-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
41 lines (41 loc) · 1.13 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
{
"name": "phpro/symfony-conventions",
"description": "GrumPHP conventions for Symfony projects at PHPro",
"type": "package",
"license": "MIT",
"prefer-stable": true,
"require": {
"php": "^8.1",
"brianium/paratest": "^6.3|^7.0",
"php-cs-fixer/shim": "^3.57",
"phpro/grumphp-shim": "^2.0",
"phpunit/phpunit": "^9.5|^10.0|^11.0"
},
"suggest": {
"vimeo/psalm": "Static analysis",
"psalm/plugin-symfony": "Static analysis",
"phpstan/phpstan": "Static analysis",
"roave/security-advisories": "Security",
"symplify/phpstan-rules": "Object calisthenics"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"phpro/grumphp-shim": true,
"phpstan/extension-installer": true,
"symfony/flex": true
}
},
"extra": {
"class": "PHProConventions\\Composer\\PhproConventionsPlugin",
"grumphp": {
"disable-plugin": true
}
},
"require-dev": {
"azjezz/psl": "^2.1"
}
}