Skip to content

Commit

Permalink
Added tests for lowest versions of dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
norberttech committed Jul 14, 2015
1 parent 092b13e commit fcc0659
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 fcc0659

Please sign in to comment.