File tree Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -2,13 +2,22 @@ language: php
22
33php :
44 - 7.0
5+ - 7.0snapshot
56 - 7.1
6- - nightly
7+ - 7.1snapshot
8+ - master
9+
10+ matrix :
11+ allow_failures :
12+ - php : master
13+ fast_finish : true
714
815env :
916 matrix :
10- - DRIVER="xdebug"
11- - DRIVER="phpdbg"
17+ - DRIVER="xdebug" DEPENDENCIES="high"
18+ - DRIVER="phpdbg" DEPENDENCIES="high"
19+ - DRIVER="xdebug" DEPENDENCIES="low"
20+ - DRIVER="phpdbg" DEPENDENCIES="low"
1221
1322sudo : false
1423
@@ -17,7 +26,8 @@ before_install:
1726 - composer clear-cache
1827
1928install :
20- - travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable
29+ - if [[ "$DEPENDENCIES" = 'high' ]]; then travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable; fi
30+ - if [[ "$DEPENDENCIES" = 'low' ]]; then travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable --prefer-lowest; fi
2131
2232script :
2333 - if [[ "$DRIVER" = 'phpdbg' ]]; then phpdbg -qrr vendor/bin/phpunit; fi
You can’t perform that action at this time.
0 commit comments