From c4567f786d283851be12319214ac7be7a0a0ee69 Mon Sep 17 00:00:00 2001 From: "Barry vd. Heuvel" Date: Wed, 13 Mar 2019 10:56:08 +0100 Subject: [PATCH] Test PHP 7.3 and 7.4 (#205) * Test PHP 7.3 and 7.4 * Update .travis.yml * Update .travis.yml --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3a4f161d..b674b347 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,8 @@ php: - 7.0 - 7.1 - 7.2 + - 7.3 + - 7.4snapshot # This triggers builds to run on the new TravisCI infrastructure. # See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/ @@ -28,7 +30,9 @@ matrix: env: setup=lowest symfony="^3" - php: 7.1 env: setup=lowest symfony="^4" - + allow_failures: + - php: 7.4snapshot + install: - if [[ $symfony != '*' ]]; then travis_retry composer require symfony/http-foundation:${symfony} --no-update --no-interaction; fi - if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi