-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
53 lines (53 loc) · 1.93 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
{
"require": {
"php": ">=7.4",
"justinrainbow/json-schema": "^5.3",
"php-parallel-lint/php-parallel-lint": "1.4",
"phpstan/phpstan": "2.0.4",
"phpstan/phpstan-deprecation-rules": "2.0.1",
"phpstan/phpstan-phpunit": "2.0.3",
"phpstan/phpstan-strict-rules": "2.0.1",
"phpstan/phpstan-symfony": "2.0.0",
"spaze/phpstan-disallowed-calls": "4.0.1",
"sqlftw/sqlftw": "0.1.16",
"staabm/phpstan-baseline-analysis": "0.13.1",
"staabm/phpstan-dba": "0.3.1",
"staabm/phpstan-todo-by": "0.2",
"symplify/phpstan-rules": "14.1.1",
"tomasvotruba/cognitive-complexity": "1.0",
"tomasvotruba/type-coverage": "2.0.0",
"tomasvotruba/unused-public": "2.0.0",
"rector/type-perfect": "2.0.0"
},
"autoload": {
"classmap": [
"lib/"
]
},
"config": {
"bin-compat": "full",
"optimize-autoloader": true,
"platform": {
"php": "7.4.30"
},
"platform-check": false
},
"scripts": {
"post-update-cmd": [
"find vendor -name doc -type d -exec rm -r {} +",
"find vendor -name docs -type d -exec rm -r {} +",
"find vendor -name tests -type d -exec rm -r {} +",
"find vendor -name build -type d -exec rm -r {} +",
"find vendor -name .github -type d -exec rm -r {} +",
"rm -f vendor/symplify/phpstan-rules/stubs/Symfony/Component/Console/Command.php",
"mkdir -p vendor/sqlftw/sqlftw/tests",
"mkdir -p vendor/sqlftw/sqlftw/build",
"mkdir -p vendor/dogma/dogma/tests",
"touch vendor/sqlftw/sqlftw/tests/.gitkeep",
"touch vendor/sqlftw/sqlftw/build/.gitkeep",
"touch vendor/dogma/dogma/tests/.gitkeep"
],
"phpstan": "phpstan analyze -c phpstan.dev.neon",
"tests": "php tests/run.php"
}
}