Skip to content

Commit

Permalink
Merge pull request #54 from norzechowicz/lowest-dependencies
Browse files Browse the repository at this point in the history
Added test for lowest versions of dependnecies
  • Loading branch information
Norbert Orzechowicz committed Jul 14, 2015
2 parents 51f48df + 7eec3f1 commit 54d7400
Showing 1 changed file with 20 additions and 8 deletions.
28 changes: 20 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,24 @@
language: php

php:
- 5.3
- 5.4
- 5.5
matrix:
include:
- php: 5.3
env: DEPENDENCIES='low'
- php: 5.3
- php: 5.4
- php: 5.5
- php: 5.6
- php: hhvm
allow_failures:
- env: DEPENDENCIES='low'

before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar --dev install
before_install:
- composer self-update

script: bin/phpunit --coverage-text
install:
- export COMPOSER_ROOT_VERSION=dev-master
- if [ "$DEPENDENCIES" != "low" ]; then composer update; fi;
- if [ "$DEPENDENCIES" == "low" ]; then composer update --prefer-lowest; fi;

script:
- ./bin/phpunit --coverage-text

0 comments on commit 54d7400

Please sign in to comment.