From 2e65b1d34573e0b65d45fd41a8601992f58829da Mon Sep 17 00:00:00 2001 From: Ben Peachey Date: Wed, 11 Sep 2019 20:45:10 +0200 Subject: [PATCH] Fix debian distribution for older PHP versions. --- .travis.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4a659c3f..bad3b2af 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,8 +25,14 @@ matrix: include: - php: 7.2 env: SNIFF=1 + - php: 5.5 + # As the latest Debian not supporting PHP 5.5 anymore, we need to force using 'trusty'. + dist: trusty + - php: 5.4 + # As the latest Debian not supporting PHP 5.4 anymore, we need to force using 'trusty'. + dist: trusty - php: 5.3 - # As 'trusty' is not supporting PHP 5.2/5.3 anymore, we need to force using 'precise'. + # As the latest Debian not supporting PHP 5.3 anymore, we need to force using 'precise'. dist: precise fast_finish: true