From 4332d2fa8e8914aa999950d7699cfbd4d245e5c3 Mon Sep 17 00:00:00 2001 From: Sam Minnee Date: Thu, 4 May 2017 15:25:14 +1200 Subject: [PATCH] FIX: Drop php5.5, add php7.1, simplify build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit SS4 no longer supports PHP 5.5 so I’ve dropped it. In addition I’ve reduced the double-up of builds as we don’t need so many. And I’ve added PHP 7.1 --- .travis.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 329e8820..1f60706a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,20 +4,14 @@ sudo: false language: php -php: - - 5.5 - - 5.6 - - 7.0 - -env: - - DB=MYSQL CORE_RELEASE=master - matrix: include: - php: 5.6 - env: DB=PGSQL CORE_RELEASE=master + env: DB=MYSQL CORE_RELEASE=master - php: 7.0 env: DB=PGSQL CORE_RELEASE=master + - php: 7.1.2 + env: DB=MYSQL CORE_RELEASE=master before_script: - composer self-update || true