-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (77 loc) · 2.4 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "enabel/partner-countries-bundle",
"description": "Symfony partner countries management",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Damien Lagae",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"doctrine/migrations": "^3.7",
"easycorp/easyadmin-bundle": "^4.4",
"symfony/config": "^6.0|^7.0",
"symfony/dependency-injection": "^6.0|^7.0",
"symfony/framework-bundle": "^6.0|^7.0",
"symfony/intl": "^6.0|^7.0",
"twig/twig": "^3.4"
},
"require-dev": {
"nunomaduro/phpinsights": "^2.6",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-phpunit": "^1.1",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7",
"symfony/phpunit-bridge": "^6.0|^7.0",
"symfony/yaml": "^6.0|^7.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Enabel\\PartnerCountriesBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Enabel\\PartnerCountriesBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"symfony/flex": false,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"scripts": {
"cs": "vendor/bin/phpcs --standard=PSR12 --parallel=4 --ignore=vendor .",
"cs-fix": "vendor/bin/phpcbf --standard=PSR12 --parallel=4 --ignore=vendor .",
"fix": [
"@cs-fix",
"@insight-fix"
],
"insight": "vendor/bin/phpinsights --no-interaction",
"insight-fix": "vendor/bin/phpinsights --no-interaction --fix",
"qa": [
"@cs",
"@stan",
"@insight",
"@test"
],
"stan": "vendor/bin/phpstan analyse -c phpstan.neon --no-interaction",
"test": "vendor/bin/simple-phpunit -d memory_limit=-1 --stop-on-failure --testdox"
},
"scripts-descriptions": {
"cs": "Run php_codesniffer with PSR12 standard",
"cs-fix": "Run PHP Code Beautifier",
"fix": "Run fixer",
"insight": "Run PHP Insights",
"insight-fix": "Run PHP Insights and fix",
"qa": "Run static analysis tools & test",
"stan": "Run PHPStan",
"test": "Run the PHPUnit tests"
}
}