We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba897a6 commit e69d782Copy full SHA for e69d782
1 file changed
.travis.yml
@@ -19,9 +19,13 @@ install:
19
- composer install -o
20
- |
21
if [[ ${TRAVIS_PHP_VERSION:0:2} == "7." ]]; then
22
- composer require "phpunit/phpunit=5.7.*"
+ composer require "phpunit/phpunit=~5.7"
23
else
24
- composer require "phpunit/phpunit=4.8.*"
+ if [[ ${TRAVIS_PHP_VERSION:0:3} == "5.6" ]]; then
25
+ composer require "phpunit/phpunit=~5"
26
+ else
27
+ composer require "phpunit/phpunit=~4.8"
28
+ fi
29
fi
30
31
script: ./vendor/bin/phpunit -c phpunit.xml.dist --coverage-clover=coverage.clover
0 commit comments