From 9c905595d03d1e425ce14c892b30989eb1e42e0a Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Mon, 15 Oct 2018 15:50:11 +0900 Subject: [PATCH] Add PHP7.3 to the build matrix See: travis-ci/travis-ci#9717 --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 89f08f2f..06cb9733 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ php: - 7 - 7.1 - 7.2 + - 7.3 cache: directories: - vendor @@ -13,8 +14,8 @@ env: - DEPENDENCIES="" - DEPENDENCIES="--prefer-lowest --prefer-stable" before_script: - - cp $HOME/.phpenv/versions/$(phpenv global)/etc/conf.d/xdebug.ini /tmp - - phpenv config-rm xdebug.ini + - if [[ $TRAVIS_PHP_VERSION = '7.2' ]]; then cp $HOME/.phpenv/versions/$(phpenv global)/etc/conf.d/xdebug.ini /tmp; fi + - if [[ $TRAVIS_PHP_VERSION != '7.3' ]]; then phpenv config-rm xdebug.ini ; fi - composer self-update - composer update $DEPENDENCIES - composer update --working-dir=demo