From d3e4c376d8cf352c669bd934596e954fc27d8105 Mon Sep 17 00:00:00 2001 From: Justin Yost Date: Sat, 17 Jan 2015 11:37:33 -0800 Subject: [PATCH] Testing against the lowest dependencies Closes #49 Signed-off-by: Justin Yost --- .travis.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 68fedb6..b66c146 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,15 @@ language: php php: - - 5.3 + - 5.3.23 - 5.4 - 5.5 - 5.6 -env: +matrix: + include: + - php: 5.3.23 + env: dependencies=lowest # Branches to be built or not branches: @@ -16,6 +19,9 @@ branches: # Before Installing Software/Dependencies Needed before_install: + - composer self-update + - composer install -n + - if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest --prefer-stable -n; fi; - sh -c "cp ./config/config.sample.php ./config/config.php" # Install Software/Dependencies Needed