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.
composer run-script phpstan
composer run-script phpunit
1 parent bdf7861 commit 80645feCopy full SHA for 80645fe
.travis.yml
@@ -13,9 +13,7 @@ services:
13
before_script:
14
- composer self-update
15
- composer update
16
- - #if [ $(phpenv version-name) != "5.6" ]; then composer require --dev phpstan/phpstan; fi
17
18
script:
19
- - vendor/bin/phpunit -c tests.xml
20
- - #if [ $(phpenv version-name) != "5.6" ]; then composer run-script phpstan; fi
21
-
+ - composer run-script phpunit
+ - composer run-script phpstan
composer.json
@@ -30,6 +30,7 @@
30
}
31
},
32
"scripts": {
33
- "phpstan": "phpstan analyse --level 4 src"
+ "phpstan": "phpstan analyse --level 4 src",
34
+ "phpunit": "phpunit -c tests.xml"
35
36
0 commit comments