File tree Expand file tree Collapse file tree 1 file changed +39
-1
lines changed Expand file tree Collapse file tree 1 file changed +39
-1
lines changed Original file line number Diff line number Diff line change 48
48
"bin" : [
49
49
" bin/phpcs" ,
50
50
" bin/phpcbf"
51
- ]
51
+ ],
52
+ "scripts" : {
53
+ "cs" : [
54
+ " @php ./bin/phpcs"
55
+ ],
56
+ "cbf" : [
57
+ " @php ./bin/phpcbf"
58
+ ],
59
+ "test" : [
60
+ " Composer\\ Config::disableProcessTimeout" ,
61
+ " @php ./vendor/phpunit/phpunit/phpunit tests/AllTests.php --no-coverage"
62
+ ],
63
+ "test-php8" : [
64
+ " Composer\\ Config::disableProcessTimeout" ,
65
+ " @php ./vendor/phpunit/phpunit/phpunit tests/AllTests.php --no-configuration --bootstrap=tests/bootstrap.php --dont-report-useless-tests --no-coverage"
66
+ ],
67
+ "coverage" : [
68
+ " Composer\\ Config::disableProcessTimeout" ,
69
+ " @php ./vendor/phpunit/phpunit/phpunit tests/AllTests.php -d max_execution_time=0"
70
+ ],
71
+ "build" : [
72
+ " Composer\\ Config::disableProcessTimeout" ,
73
+ " @php -d phar.readonly=0 -f ./scripts/build-phar.php"
74
+ ],
75
+ "check-all" : [
76
+ " @cs" ,
77
+ " @test" ,
78
+ " @check-package"
79
+ ]
80
+ },
81
+ "scripts-descriptions" : {
82
+ "cs" : " Check for code style violations." ,
83
+ "cbf" : " Fix code style violations." ,
84
+ "test" : " Run the unit tests without code coverage." ,
85
+ "test-php8" : " Run the unit tests without code coverage on PHP 8.1 or higher." ,
86
+ "coverage" : " Run the unit tests with code coverage." ,
87
+ "build" : " Create PHAR files for PHPCS and PHPCBF." ,
88
+ "check-all" : " Run all checks (phpcs, tests)."
89
+ }
52
90
}
You can’t perform that action at this time.
0 commit comments