-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 loc) · 1.29 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
{
"name": "bitexpert/phpstan-sylius",
"type": "phpstan-extension",
"description": "Sylius extensions and rules for PHPStan",
"license": "MIT",
"authors": [
{
"name": "Stephan Hochdörfer",
"email": "[email protected]",
"homepage": "http://www.bitExpert.de"
}
],
"require": {
"php": "^8.2",
"phpstan/phpstan": "^2.1"
},
"require-dev": {
"sylius/resource-bundle": "^1.12",
"sylius/grid-bundle": "^1.13",
"nikic/php-parser": "^5.4",
"phpunit/phpunit": "^11.5",
"friendsofphp/php-cs-fixer": "^3.69",
"madewithlove/license-checker": "^1.6"
},
"autoload": {
"psr-4": {
"bitExpert\\PHPStan\\": "src/bitExpert/PHPStan"
}
},
"autoload-dev": {
"psr-4": {
"bitExpert\\PHPStan\\": "tests/bitExpert/PHPStan"
},
"files": ["tests/bitExpert/PHPStan/Sylius/Rule/Grid/data/grid.php"]
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"scripts": {
"cs": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"cs-gitlab": "vendor/bin/php-cs-fixer fix --dry-run --format=gitlab --using-cache=no > gl-cs-fixer.json",
"cs-fix": "vendor/bin/php-cs-fixer fix",
"check-license": "vendor/bin/license-checker check",
"static-analysis": "vendor/bin/phpstan"
}
}