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 c6fda53 commit eeb3667Copy full SHA for eeb3667
.travis.yml
@@ -1,18 +1,11 @@
1
language: php
2
3
-php:
4
- - 5.5.9
5
- - 5.5
6
- - 5.6
7
- - 7.0
8
- - 7.1
9
- - hhvm
10
-
11
sudo: false
12
13
env:
14
global:
15
- setup=basic
+ - xdebug=true
16
17
cache:
18
directories:
@@ -24,6 +17,16 @@ matrix:
24
env: setup=lowest
25
- php: 5.5.9
26
19
env: setup=stable
20
+ - php: 5.5
21
+ - php: 5.6
22
+ - php: 7.0
23
+ - php: 7.1
+ env: xdebug=false
+ - php: hhvm
27
+
28
+before_install:
29
+ - if [[ $xdebug != 'true' ]] ; then phpenv config-rm xdebug.ini; fi
30
31
install:
32
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction --no-suggest; fi
0 commit comments