Skip to content

Commit

Permalink
Testing against the lowest dependencies
Browse files Browse the repository at this point in the history
Closes #49

Signed-off-by: Justin Yost <[email protected]>
  • Loading branch information
justinyost committed Jan 17, 2015
1 parent f8cdffb commit d3e4c37
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand All @@ -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
Expand Down

0 comments on commit d3e4c37

Please sign in to comment.