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 7
7
8
8
env :
9
9
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"
14
12
15
13
sudo : false
16
14
@@ -19,11 +17,9 @@ before_install:
19
17
- composer clear-cache
20
18
21
19
install :
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
24
21
25
22
script :
26
-
27
23
- if [[ "$DRIVER" = 'phpdbg' ]]; then phpdbg -qrr vendor/bin/phpunit; fi
28
24
- if [[ "$DRIVER" = 'xdebug' ]]; then vendor/bin/phpunit; fi
29
25
You can’t perform that action at this time.
0 commit comments