From f8099a63f899c97e58d98b94146ceaa7a71bcc13 Mon Sep 17 00:00:00 2001 From: Jeremy Mikola Date: Fri, 9 Sep 2016 15:42:24 -0400 Subject: [PATCH] Add more platforms to Travis build matrix This ensures we test against old and current Symfony versions --- .travis.yml | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 563ac5b..af69a9a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,27 @@ language: php +sudo: false + php: - 5.3 - 5.4 + - 5.5 + - 5.6 + - 7.0 + - hhvm -before_script: composer install --dev +matrix: + fast_finish: true + allow_failures: + - php: hhvm + - env: SYMFONY_VERSION=3.0.* + + include: + - php: 5.3 + env: COMPOSER_FLAGS="--prefer-lowest" + +before_install: + - travis_retry composer self-update + +install: + - composer update ${COMPOSER_FLAGS} --no-interaction