From e507a5dc8b35be372b7990068c0636df68a62924 Mon Sep 17 00:00:00 2001 From: Jacob Kiers Date: Fri, 2 Oct 2015 15:40:13 +0200 Subject: [PATCH] Update travis configuration Test more PHP versions, in order to maintain compatibility. Also updates the composer install command. Signed-off-by: Jacob Kiers --- .travis.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 434d1af..1f2cff1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,15 @@ +sudo: false + language: php php: + - 5.3 - 5.4 - 5.5 + - 5.6 + - 7 + - hhvm before_script: - composer selfupdate --quiet - - composer install --dev + - composer install --prefer-dist - vendor/phpunit/phpunit/composer/bin/phpunit