diff --git a/.travis.yml b/.travis.yml index 68fedb6..a4867f5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,15 @@ language: php php: - - 5.3 + - 5.3.3 - 5.4 - 5.5 - 5.6 -env: +matrix: + include: + - php: 5.3.3 + 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