From 93e185e7aa4b4b37fbc60d731b9a98efbcec9fe3 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Mon, 10 Jun 2019 10:18:43 +0200 Subject: [PATCH 1/2] Updated the Travis config --- .travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index f00ef843e..b38b9fc2f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,12 +18,13 @@ matrix: - php: 7.1.18 - php: 7.2 - php: 7.3 - - php: nightly + # 'php: nightly' is PHP 8.0 + - php: 7.4snapshot allow_failures: - - php: nightly + - php: 7.4snapshot before_install: - - '[[ "$TRAVIS_PHP_VERSION" == "nightly" ]] || phpenv config-rm xdebug.ini' + - '[[ "$TRAVIS_PHP_VERSION" == "7.4snapshot" ]] || phpenv config-rm xdebug.ini' - composer self-update install: From b495a64c8625ac3656165ff213ad429bd15c41c7 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Mon, 10 Jun 2019 10:48:14 +0200 Subject: [PATCH 2/2] - --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b38b9fc2f..972fde5f1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,7 +34,7 @@ install: script: - ./bin/phpunit # this checks that the source code follows the Symfony Code Syntax rules - - '[[ "$TRAVIS_PHP_VERSION" == "nightly" ]] || ./vendor/bin/php-cs-fixer fix --diff --dry-run -v' + - '[[ "$TRAVIS_PHP_VERSION" == "7.4snapshot" ]] || ./vendor/bin/php-cs-fixer fix --diff --dry-run -v' # this checks that the YAML config files contain no syntax errors - ./bin/console lint:yaml config # this checks that the Twig template files contain no syntax errors