1
0
mirror of synced 2025-02-09 08:49:26 +03:00

Merge pull request #6481 from lcobucci/improve-build-extensions

Improve build extensions
This commit is contained in:
Benjamin Eberlei 2017-06-12 20:45:25 +02:00 committed by GitHub
commit 3dc0f471fe

View File

@ -14,7 +14,7 @@ env:
before_script:
- if [[ $TRAVIS_PHP_VERSION = '7.0' && $DB = 'sqlite' ]]; then PHPUNIT_FLAGS="--coverage-clover ./build/logs/clover.xml"; else PHPUNIT_FLAGS=""; fi
- if [[ $TRAVIS_PHP_VERSION -lt '7.0' && $TRAVIS_PHP_VERSION != 'hhv*' ]]; then phpenv config-rm xdebug.ini; fi
- if [[ "$PHPUNIT_FLAGS" == "" ]]; then phpenv config-rm xdebug.ini; fi
- composer self-update
- composer install --prefer-source
- if [ "$DEPENDENCIES" != "low" ]; then composer update; fi;