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 88
99env :
1010 matrix :
11- - DEPENDENCIES="high" DRIVER="xdebug"
12- - DEPENDENCIES="low" DRIVER="xdebug"
13- - DEPENDENCIES="high" DRIVER="phpdbg"
14- - DEPENDENCIES="low" DRIVER="phpdbg"
11+ - DRIVER="xdebug"
12+ - DRIVER="phpdbg"
1513
1614sudo : false
1715
@@ -20,11 +18,9 @@ before_install:
2018 - composer clear-cache
2119
2220install :
23- - if [[ "$DEPENDENCIES" = 'high' ]]; then travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable; fi
24- - if [[ "$DEPENDENCIES" = 'low' ]]; then travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable --prefer-lowest; fi
21+ - travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable
2522
2623script :
27-
2824 - if [[ "$DRIVER" = 'phpdbg' ]]; then phpdbg -qrr vendor/bin/phpunit; fi
2925 - if [[ "$DRIVER" = 'xdebug' ]]; then vendor/bin/phpunit; fi
3026
You can’t perform that action at this time.
0 commit comments