We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 035707b + eef1e42 commit 41f78f0Copy full SHA for 41f78f0
.circleci/config.yml
@@ -31,7 +31,5 @@ jobs:
31
- ./vendor
32
33
# run tests with phpunit
34
- - run: ./vendor/bin/phpunit
35
- - run: ./vendor/bin/phpcs --standard=PSR2 src/
36
- - run: php tests/CoverageCheck.php tests/clover.xml 95
+ - run: composer test
37
composer.json
@@ -27,8 +27,11 @@
27
}
28
},
29
"scripts": {
30
- "test": "phpunit",
- "cs": "php-cs-fixer fix src/ --level=psr2"
+ "test": [
+ "./vendor/bin/phpunit",
+ "./vendor/bin/phpcs --standard=PSR2 src/",
+ "php tests/CoverageCheck.php tests/clover.xml 95"
+ ]
"minimum-stability": "stable"
0 commit comments