-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.03 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
{
"name": "lychee-org/phpstan-lychee",
"description": "Set of rules for all Lychee related php repo",
"type": "library",
"license": "MIT",
"require": {
"friendsofphp/php-cs-fixer": "^3.3",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-strict-rules": "^1.6",
"slam/phpstan-extensions": "^6.3",
"squizlabs/php_codesniffer": "^3.5",
"symplify/phpstan-rules": "12.7.0",
"thecodingmachine/phpstan-safe-rule": "^1.2"
},
"scripts": {
"check-code-style": [
"./vendor/bin/php-cs-fixer fix -v --config=.php-cs-fixer.php"
],
"validate-files": [
"vendor/bin/parallel-lint --exclude vendor ."
]
},
"autoload": {
"psr-4": {
"Lycheeorg\\PHPStan\\": "phpstan/"
}
},
"config": {
"platform": {
"php": "8.2"
},
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"prefer-stable": true,
"minimum-stability": "stable"
}