We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 51f48df + 7eec3f1 commit 54d7400Copy full SHA for 54d7400
.travis.yml
@@ -1,12 +1,24 @@
1
language: php
2
3
-php:
4
- - 5.3
5
- - 5.4
6
- - 5.5
+matrix:
+ include:
+ - php: 5.3
+ env: DEPENDENCIES='low'
7
8
+ - php: 5.4
9
+ - php: 5.5
10
+ - php: 5.6
11
+ - php: hhvm
12
+ allow_failures:
13
+ - env: DEPENDENCIES='low'
14
-before_script:
- - curl -s http://getcomposer.org/installer | php
- - php composer.phar --dev install
15
+before_install:
16
+ - composer self-update
17
-script: bin/phpunit --coverage-text
18
+install:
19
+ - export COMPOSER_ROOT_VERSION=dev-master
20
+ - if [ "$DEPENDENCIES" != "low" ]; then composer update; fi;
21
+ - if [ "$DEPENDENCIES" == "low" ]; then composer update --prefer-lowest; fi;
22
+
23
+script:
24
+ - ./bin/phpunit --coverage-text
0 commit comments