-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
50 lines (50 loc) · 1.42 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": "staabm/phpstan-baseline-analysis",
"license": "MIT",
"keywords": ["dev", "phpstan", "phpstan-extension", "static analysis", "baseline analysis"],
"autoload": {
"classmap": ["lib/"]
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"require": {
"php": "^7.4 || ^8.0",
"nette/neon": "^3.2",
"symfony/polyfill-php80": "^1.26"
},
"require-dev": {
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2",
"phpstan/phpstan-deprecation-rules": "^2",
"phpunit/phpunit": "^9.6",
"symfony/var-dumper": "^5.3",
"tomasvotruba/cognitive-complexity": "^1",
"tomasvotruba/type-coverage": "^2.0",
"tomasvotruba/unused-public": "^2.0"
},
"conflict": {
"tomasvotruba/type-coverage": "<1.0"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"cweagans/composer-patches": false,
"phpstan/extension-installer": true
}
},
"scripts": {
"phpstan": "phpstan analyze",
"phpstan-baseline": "phpstan analyse -c phpstan.neon.dist --generate-baseline || true",
"test": "phpunit"
},
"bin": [
"bin/phpstan-baseline-analyze",
"bin/phpstan-baseline-filter",
"bin/phpstan-baseline-trend",
"bin/phpstan-baseline-graph"
]
}