File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change 35
35
}
36
36
],
37
37
"scripts" : {
38
+ "test" : [
39
+ " ./vendor/bin/phpunit --color=always"
40
+ ],
41
+ "test-no-coverage" : [
42
+ " ./vendor/bin/phpunit --color=always --no-coverage"
43
+ ],
38
44
"check" : [
39
45
" ./vendor/bin/php-cs-fixer fix --ansi --dry-run --diff" ,
40
46
" ./vendor/bin/phpcs --report-width=200 --report-summary --report-full samples/ src/ tests/ --ignore=src/PhpWord/Shared/PCLZip --standard=PSR2 -n" ,
41
47
" ./vendor/bin/phpmd src/,tests/ text ./phpmd.xml.dist --exclude pclzip.lib.php" ,
42
- " ./vendor/bin/phpunit --color=always "
48
+ " @test "
43
49
],
44
50
"fix" : [
45
51
" ./vendor/bin/php-cs-fixer fix --ansi"
46
52
]
47
53
},
54
+ "scripts-descriptions" : {
55
+ "test" : " Runs all unit tests" ,
56
+ "test-no-coverage" : " Runs all unit tests, without code coverage" ,
57
+ "check" : " Runs PHP CheckStyle and PHP Mess detector" ,
58
+ "fix" : " Fixes issues found by PHP-CS"
59
+ },
48
60
"require" : {
49
61
"php" : " ^5.3.3 || ^7.0" ,
50
62
"ext-xml" : " *" ,
You can’t perform that action at this time.
0 commit comments