File tree Expand file tree Collapse file tree 5 files changed +665
-3
lines changed Expand file tree Collapse file tree 5 files changed +665
-3
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,9 @@ infection:
31
31
unit :
32
32
composer run-script unit --timeout=0
33
33
34
+ stan :
35
+ composer run-script stan --timeout=0
36
+
34
37
unit-coverage :
35
38
composer run-script unit-coverage --timeout=0
36
39
Original file line number Diff line number Diff line change 19
19
"jakub-onderka/php-parallel-lint" : " ^1.0.0" ,
20
20
"localheinz/composer-normalize" : " ^1.0.0" ,
21
21
"nunomaduro/collision" : " ^2.1" ,
22
+ "phpstan/phpstan" : " ^0.10.7" ,
22
23
"phpunit/phpunit" : " ^7.5"
23
24
},
24
25
"require-dev" : {},
73
74
" composer normalize --ansi" ,
74
75
" @lint-php" ,
75
76
" @cs" ,
77
+ " @stan" ,
76
78
" @unit"
77
79
],
78
80
"qa-all-extended" : [
79
81
" composer validate --ansi" ,
80
82
" composer normalize --ansi" ,
81
83
" @lint-php" ,
82
84
" @cs" ,
85
+ " @stan" ,
83
86
" @unit-coverage" ,
84
87
" @infection"
85
88
],
98
101
"qa-windows" : [
99
102
" @lint-php" ,
100
103
" @cs" ,
104
+ " @stan" ,
101
105
" @unit"
102
106
],
107
+ "stan" : [
108
+ " @ensure-installed" ,
109
+ " phpstan analyse src tests --level max --ansi"
110
+ ],
103
111
"unit" : [
104
112
" @ensure-installed" ,
105
113
" phpunit --colors=always -c phpunit.xml.dist"
You can’t perform that action at this time.
0 commit comments