File tree Expand file tree Collapse file tree 1 file changed +15
-7
lines changed Expand file tree Collapse file tree 1 file changed +15
-7
lines changed Original file line number Diff line number Diff line change @@ -3,27 +3,35 @@ language: php
33php :
44 - 5.6
55 - 7.0
6+ - 7.0snapshot
67 - 7.1
7- - nightly
8-
9- env :
10- matrix :
11- - DRIVER="xdebug"
12- - DRIVER="phpdbg"
8+ - 7.1snapshot
9+ - master
1310
1411matrix :
12+ allow_failures :
13+ - php : master
14+ fast_finish : true
1515 exclude :
1616 - php : 5.6
1717 env : DRIVER="phpdbg"
1818
19+ env :
20+ matrix :
21+ - DRIVER="xdebug" DEPENDENCIES="high"
22+ - DRIVER="phpdbg" DEPENDENCIES="high"
23+ - DRIVER="xdebug" DEPENDENCIES="low"
24+ - DRIVER="phpdbg" DEPENDENCIES="low"
25+
1926sudo : false
2027
2128before_install :
2229 - composer self-update
2330 - composer clear-cache
2431
2532install :
26- - travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable
33+ - if [[ "$DEPENDENCIES" = 'high' ]]; then travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable; fi
34+ - if [[ "$DEPENDENCIES" = 'low' ]]; then travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable --prefer-lowest; fi
2735
2836script :
2937 - if [[ "$DRIVER" = 'phpdbg' ]]; then phpdbg -qrr vendor/bin/phpunit; fi
You can’t perform that action at this time.
0 commit comments