File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change 77
88env :
99 matrix :
10- - DEPENDENCIES="high" DRIVER="xdebug"
11- - DEPENDENCIES="low" DRIVER="xdebug"
12- - DEPENDENCIES="high" DRIVER="phpdbg"
13- - DEPENDENCIES="low" DRIVER="phpdbg"
10+ - DRIVER="xdebug"
11+ - DRIVER="phpdbg"
1412
1513sudo : false
1614
@@ -19,11 +17,9 @@ before_install:
1917 - composer clear-cache
2018
2119install :
22- - if [[ "$DEPENDENCIES" = 'high' ]]; then travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable; fi
23- - if [[ "$DEPENDENCIES" = 'low' ]]; then travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable --prefer-lowest; fi
20+ - travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable
2421
2522script :
26-
2723 - if [[ "$DRIVER" = 'phpdbg' ]]; then phpdbg -qrr vendor/bin/phpunit; fi
2824 - if [[ "$DRIVER" = 'xdebug' ]]; then vendor/bin/phpunit; fi
2925
You can’t perform that action at this time.
0 commit comments