From a3fffa5d701db3d1d15163120611d5d7ee7a378a Mon Sep 17 00:00:00 2001 From: Jean Paul Galea Date: Mon, 11 Nov 2019 10:04:11 +0100 Subject: [PATCH] Fix Travis tests - Services are no longer started by default: https://docs.travis-ci.com/user/database-setup/ - Test on supported PHP versions: https://www.php.net/supported-versions.php --- .travis.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3da7afd..c4f126d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,10 @@ +services: + - mysql language: php php: - - 7.0 - - 5.6 - - 5.5 - - 5.4 + - 7.1 + - 7.2 + - 7.3 env: - DB=mysql - DB=pgsql