We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e963cfa commit f95afa9Copy full SHA for f95afa9
.travis.yml
@@ -10,6 +10,8 @@ env:
10
matrix:
11
- DEPENDENCIES="high"
12
- DEPENDENCIES="low"
13
+ - DRIVER="phpdbg"
14
+ - DRIVER="xdebug"
15
16
sudo: false
17
@@ -23,7 +25,8 @@ install:
23
25
24
26
script:
27
- - vendor/bin/phpunit
28
+ - if [[ "$DRIVER" = 'phpdbg' ]]; then phpdbg -qrr vendor/bin/phpunit; fi
29
+ - if [[ "$DRIVER" = 'xdebug' ]]; then vendor/bin/phpunit; fi
30
31
notifications:
32
email: false
0 commit comments