From fb0fdb63621383c09e5419d1bd59bcabfe3a5938 Mon Sep 17 00:00:00 2001 From: Frank Bergkemper Date: Mon, 11 Sep 2017 14:34:47 +0200 Subject: [PATCH] Travis: PHP 5.3 does not install into trusty Travis has switched the default image to 'Trusty' which does not support PHP 5.2 or 5.3. Also Travis will drop 'Precise' support entirely in September 2017. Therefore we disable testing on PHP version 5.2 or 5.3 which are also EOL and no longer supported. --- .travis.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0cc8d7c0..bc951fc8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,8 @@ language: php + php: - - '5.3' - - '5.4' - - '5.5' - - '5.6' - - '7.0' + - 5.4 + - 5.5 + - 5.6 + - 7.0 + - 7.1