From 2348bdb780d984f3fc497fca74302b14506eca10 Mon Sep 17 00:00:00 2001 From: "Connor S. Parks" Date: Sat, 13 Aug 2016 17:04:51 +0100 Subject: [PATCH] Make Travis disable xdebug (#2056) --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4d4fb231..9455eb28 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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