Make Travis disable xdebug (#2056)

This commit is contained in:
Connor S. Parks
2016-08-13 17:04:51 +01:00
committed by Graham Campbell
parent b34a32dda9
commit 2348bdb780

View File

@@ -10,7 +10,9 @@ php:
sudo: false
before_install: cp .env.example .env
before_install:
- cp .env.example .env
- if [[ $TRAVIS_PHP_VERSION != 'hhvm' && $TRAVIS_PHP_VERSION != 7.1 ]] ; then phpenv config-rm xdebug.ini; fi
install: travis_retry composer install --no-interaction --no-scripts --prefer-source