From d6128ed0976e0cc51c5d4dd3da1e96e88909848b Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Wed, 17 Oct 2018 18:11:26 +0900 Subject: [PATCH] Add PHP 7.3 to .travis.yml (nightly is 7.4 now) --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index bf48be3e3..827fac912 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,10 +5,10 @@ php: - 7.0 - 7.1 - 7.2 - - nightly + - 7.3 matrix: allow_failures: - - php: nightly + - php: 7.3 services: - mysql before_script: @@ -16,7 +16,7 @@ before_script: - mysql -u root -e "CREATE DATABASE rhymix CHARSET utf8mb4 COLLATE utf8mb4_unicode_ci" - mysql -u root -e "GRANT ALL PRIVILEGES ON rhymix.* TO travis@localhost" - mysql -u root -e "UPDATE mysql.user SET Password = PASSWORD('travis') WHERE User = 'travis'; FLUSH PRIVILEGES" - - if [[ $TRAVIS_PHP_VERSION != "nightly" ]]; then phpenv config-rm xdebug.ini; fi + - if [[ $TRAVIS_PHP_VERSION != "7.3" ]]; then phpenv config-rm xdebug.ini; fi - wget https://codeception.com/releases/2.3.9/codecept.phar - php -S localhost:8000 & script: