Skip to content

Commit

Permalink
Also disable Xdebug.
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmichot committed Dec 28, 2016
1 parent c6fda53 commit eeb3667
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,11 @@
language: php

php:
- 5.5.9
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm

sudo: false

env:
global:
- setup=basic
- xdebug=true

cache:
directories:
Expand All @@ -24,6 +17,16 @@ matrix:
env: setup=lowest
- php: 5.5.9
env: setup=stable
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
env: xdebug=false
- php: hhvm
env: xdebug=false

before_install:
- if [[ $xdebug != 'true' ]] ; then phpenv config-rm xdebug.ini; fi

install:
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction --no-suggest; fi
Expand Down

0 comments on commit eeb3667

Please sign in to comment.