From 3616efd3dbccbe2aab13ac7c68a082dbbe5109d6 Mon Sep 17 00:00:00 2001 From: Zach Borboa Date: Mon, 3 Jul 2017 01:29:56 -0700 Subject: [PATCH] Use Trusty for all builds except PHP 5.3 PHP 5.2 and PHP 5.3 are not supported on Travis CI: "If you need PHP 5.2 or 5.3, please use Precise." --- .travis.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 148c393..997900c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,3 @@ -dist: trusty - language: php matrix: @@ -7,14 +5,23 @@ matrix: - php: nightly include: - php: 5.3 + dist: precise - php: 5.4 + dist: trusty - php: 5.5 + dist: trusty - php: 5.6 + dist: trusty - php: 7.0 + dist: trusty - php: 7.1 + dist: trusty - php: hhvm + dist: trusty - php: hhvm-nightly + dist: trusty - php: nightly + dist: trusty before_script: - bash tests/before_script.sh