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 2fc19ec commit e7728c6Copy full SHA for e7728c6
.travis.yml
@@ -5,6 +5,7 @@ php:
5
- 5.4
6
- 5.5
7
- 5.6
8
+ - 7.0
9
- hhvm
10
- hhvm-nightly
11
@@ -13,9 +14,13 @@ matrix:
13
14
- php: hhvm
15
- php: hhvm-nightly
16
-before_script:
17
- - wget https://getcomposer.org/composer.phar
18
- - php composer.phar install --prefer-source
+env:
+ matrix:
19
+ - COMPOSER_PREFER="--prefer-stable"
20
+ - COMPOSER_PREFER="--prefer-lowest"
21
+
22
+sudo: false
23
24
script:
- - vendor/bin/atoum --test-ext
25
+ - composer update $COMPOSER_PREFER
26
+ - ./vendor/bin/atoum
0 commit comments