-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
54 lines (54 loc) · 1.99 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
54
{
"require": {
"php": ">=7.4",
"justinrainbow/json-schema": "^5.3",
"php-parallel-lint/php-parallel-lint": "1.4",
"phpstan/phpstan": "1.12.12",
"phpstan/phpstan-deprecation-rules": "1.2.1",
"phpstan/phpstan-phpunit": "1.4.1",
"phpstan/phpstan-strict-rules": "1.6.1",
"phpstan/phpstan-symfony": "1.4.12",
"spaze/phpstan-disallowed-calls": "2.16.1",
"sqlftw/sqlftw": "0.1.16",
"staabm/phpstan-baseline-analysis": "0.13",
"staabm/phpstan-dba": "0.2.85",
"staabm/phpstan-todo-by": "0.1.32",
"symplify/phpstan-rules": "12.7.0",
"thecodingmachine/phpstan-safe-rule": "1.2",
"thecodingmachine/safe": "1.3.3",
"tomasvotruba/cognitive-complexity": "0.2.3",
"tomasvotruba/type-coverage": "1.0.0",
"tomasvotruba/unused-public": "1.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"
}
}