From 494affd2d93f4a63fe9778434d5027f5ac8dccf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Mon, 2 Nov 2020 13:33:53 +0100 Subject: [PATCH] Try to fix the build --- .travis.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8983f57..e49f307 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,10 @@ language: php php: - - '7.2' - - '7.3' - - '7.4' - - '8.0snapshot' + - '7.2' + - '7.3' + - '7.4' + - '8.0snapshot' env: - SYMFONY_VERSION=4.4.* @@ -28,7 +28,8 @@ install: - composer require --dev symfony/process:${SYMFONY_VERSION} --no-update --no-scripts --prefer-dist - composer require --dev symfony/yaml:${SYMFONY_VERSION} --no-update --no-scripts --prefer-dist - - composer update --prefer-dist --ignore-platform-req=php # ignore-platform-req=php is necessary temporarly because some deps aren't compatible with PHP8 yet + # ignore-platform-req=php is necessary temporarily because PageObjectExtension isn't compatible with PHP8 yet: https://github.com/FriendsOfBehat/PageObjectExtension/pull/16 + - if [[ ${TRAVIS_PHP_VERSION:0:3} == "8.0" ]]; then composer update --prefer-dist --ignore-platform-req=php; else composer update --prefer-dist; fi script: - composer check