File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 55 composer,
66 lint,
77 cs,
8+ composer-normalize-check,
89 tests,
910 phpstan
1011 " />
2021 </exec >
2122 </target >
2223
24+ <target name =" composer-normalize-check" >
25+ <exec
26+ executable=" composer"
27+ logoutput=" true"
28+ passthru=" true"
29+ checkreturn=" true"
30+ >
31+ <arg value =" normalize" />
32+ <arg value =" --ansi" />
33+ <arg value =" --dry-run" />
34+ </exec >
35+ </target >
36+
37+ <target name =" composer-normalize-fix" >
38+ <exec
39+ executable=" composer"
40+ logoutput=" true"
41+ passthru=" true"
42+ checkreturn=" true"
43+ >
44+ <arg value =" normalize" />
45+ <arg value =" --ansi" />
46+ </exec >
47+ </target >
48+
2349 <target name =" lint" >
2450 <exec
2551 executable=" vendor/bin/parallel-lint"
Original file line number Diff line number Diff line change 2929 "phpstan/phpstan-strict-rules" : " ^0.12" ,
3030 "satooshi/php-coveralls" : " ^1.0" ,
3131 "slevomat/coding-standard" : " ^4.7.2" ,
32- "phpunit/phpunit" : " ^7.0"
32+ "phpunit/phpunit" : " ^7.0" ,
33+ "ergebnis/composer-normalize" : " ^2.0.2"
3334 },
3435 "conflict" : {
3536 "phpunit/phpunit" : " <7.0"
You can’t perform that action at this time.
0 commit comments