Skip to content

Commit

Permalink
Merge pull request #55 from norzechowicz/lowest-dependencies-1.0
Browse files Browse the repository at this point in the history
Added tests for lowest versions of dependencies
  • Loading branch information
Norbert Orzechowicz committed Jul 14, 2015
2 parents 092b13e + fcc0659 commit 30304a6
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 --testdox

0 comments on commit 30304a6

Please sign in to comment.