-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
56 lines (56 loc) · 1.77 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "jarjak/dbal-manager",
"type": "library",
"description" : "Doctrine DBAL helper for bulk data imports in MySQL and other stuff.",
"keywords": ["dbal", "database", "persistence", "queryobject"],
"homepage": "https://github.com/JarJak/DBALManager",
"license": "MIT",
"authors": [
{
"name": "Jarek Jakubowski",
"email": "egger1991@gmail.com"
}
],
"require": {
"php": ">=7.1",
"ext-pdo": "*",
"doctrine/dbal": "^2.4"
},
"require-dev": {
"phpstan/phpstan": "^0.11",
"phpunit/phpunit": "^7.0",
"symfony/var-dumper": "^3.4|^4.0",
"symplify/easy-coding-standard": "^5.4"
},
"suggest": {
"symfony/var-dumper": "DBALManager uses VarDumper to nicely dump SQL queries, however it fallbacks to var_dump",
"ext-symfony_debug": "even better way to nicely dump SQL queries"
},
"scripts": {
"post-update-cmd": "cp -n phpunit.xml.dist phpunit.xml",
"test": [
"vendor/bin/phpunit",
"@cscheck"
],
"cscheck": [
"php -d memory_limit=1024M vendor/bin/ecs check src",
"php -d memory_limit=1024M vendor/bin/ecs check tests",
"vendor/bin/phpstan --memory-limit=1G analyse -c phpstan.neon src"
],
"csfix": [
"php -d memory_limit=1024M vendor/bin/ecs check src --fix",
"php -d memory_limit=1024M vendor/bin/ecs check tests --fix",
"vendor/bin/phpstan --memory-limit=1G analyse -c phpstan.neon src"
]
},
"autoload": {
"psr-4": {
"JarJak\\": "src/JarJak"
}
},
"autoload-dev": {
"psr-4": {
"JarJak\\Tests\\": "tests/JarJak"
}
}
}