We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d57fcd3 commit ba897a6Copy full SHA for ba897a6
1 file changed
.travis.yml
@@ -15,9 +15,16 @@ branches:
15
- upstream
16
17
install:
18
- - composer install
+ - composer self-update
19
+ - composer install -o
20
+ - |
21
+ if [[ ${TRAVIS_PHP_VERSION:0:2} == "7." ]]; then
22
+ composer require "phpunit/phpunit=5.7.*"
23
+ else
24
+ composer require "phpunit/phpunit=4.8.*"
25
+ fi
26
-script: phpunit -c phpunit.xml.dist --coverage-clover=coverage.clover
27
+script: ./vendor/bin/phpunit -c phpunit.xml.dist --coverage-clover=coverage.clover
28
29
after_script:
30
- wget https://scrutinizer-ci.com/ocular.phar
0 commit comments