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.
1 parent a92b47d commit 1c2d5c4Copy full SHA for 1c2d5c4
1 file changed
.travis.yml
@@ -1,13 +1,31 @@
1
language: php
2
3
-php:
4
- - 5.3
5
- - 5.4
6
- - 5.5
+sudo: false
7
8
-before_script:
9
- - curl -s http://getcomposer.org/installer | php
10
- - php composer.phar --dev install
+cache:
+ directories:
+ - $HOME/.composer/cache
+
+matrix:
+ include:
11
+ - php: 5.3
12
+ env: DEPENDENCIES='low'
13
14
+ - php: 5.4
15
+ - php: 5.5
16
+ - php: 5.6
17
+ - php: 7.0
18
+ - php: hhvm
19
+ allow_failures:
20
+ - env: DEPENDENCIES='low'
21
22
+before_install:
23
+ - composer self-update
24
25
+install:
26
+ - export COMPOSER_ROOT_VERSION=dev-master
27
+ - if [ "$DEPENDENCIES" != "low" ]; then composer update; fi;
28
+ - if [ "$DEPENDENCIES" == "low" ]; then composer update --prefer-lowest; fi;
29
30
script:
- - bin/phpspec run -v -f pretty
31
+ - ./bin/phpspec run --format=pretty
0 commit comments