From c4bd26f17da9c790ffef99f635bded8dfc30584a Mon Sep 17 00:00:00 2001 From: Chris Burgess Date: Fri, 17 Jun 2022 22:59:26 +1200 Subject: [PATCH] chore: Update supported PHP/OS versions in Travis CI Testing with PHP 7.2 - 8.1 and hhvm - PHP 7.0 and 7.1 can be removed, per composer.json PHP require - HHVM does not work - could be restored if still supported? --- .travis.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 54c9b6a..a4fe2b7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,12 @@ -dist: trusty +dist: focal language: php php: - - 7.0 - - 7.1 - 7.2 - 7.3 - - hhvm + - 7.4 + - 8.0 + - 8.1 # This triggers builds to run on the new TravisCI infrastructure. # See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/ @@ -17,11 +17,6 @@ cache: directories: - $HOME/.composer/cache -matrix: - include: - - php: 5.6 - env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"' - before_script: - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist