From 2d123d6d8628463d54986c1b1a0474c49e8d74c9 Mon Sep 17 00:00:00 2001 From: Davide Pastore Date: Sat, 23 May 2020 17:58:36 +0200 Subject: [PATCH] Remove old PHP versions from Travis build --- .travis.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index f230c18..fb7e88a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,19 @@ language: php +dist: trusty php: - - 5.5 + - hhvm - 5.6 - 7.0 - - hhvm + - 7.1 + - 7.2 + - 7.3 + - 7.4 + +matrix: + allow_failures: + - php: hhvm + dist: trusty before_script: composer install