From d96299306a7b7039b5b2089c2f39703da4dc7f82 Mon Sep 17 00:00:00 2001 From: Alexey Kopytko Date: Thu, 30 May 2019 17:23:36 +0900 Subject: [PATCH] Make tests work again on Travis CI with PHP 5.3 --- .travis.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3e71091d..99d31d5a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,18 @@ language: php php: - - 5.3 - - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 +matrix: + fast_finish: true + include: + - php: 5.3 + dist: precise + - php: 5.4 + dist: precise + before_script: - composer install