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 233eac8 commit 05d7f4dCopy full SHA for 05d7f4d
.travis.yml
@@ -1,17 +1,20 @@
1
language: php
2
3
-matrix:
4
- fast_finish: true
5
- include:
6
- - php: 5.5
7
- - php: 5.6
8
- - php: 7
9
- - php: 7.1
10
- - php: hhvm
+php:
+ - 5.5
+ - 5.6
+ - 7.0
+ - 7.1
+ - hhvm
11
12
-install:
13
- - travis_retry composer install --no-interaction --prefer-source
14
- - composer info -i
+env:
+ - DEPS=lowest
+ - DEPS=latest
+
+before_script:
15
+ - composer self-update
16
+ - if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable --no-interaction ; fi
17
+ - travis_retry composer install --no-interaction
18
19
script:
20
- ./vendor/bin/phpunit
0 commit comments