We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1eb0151 commit 1524302Copy full SHA for 1524302
1 file changed
.travis.yml
@@ -1,13 +1,18 @@
1
+sudo: false
2
language: php
3
php:
4
- 7.0
5
- 7.1
6
- 7.2
7
- nightly
-install: composer install
8
-script: ./vendor/bin/phpunit
9
-after_success: ./vendor/bin/php-coveralls -v
+env:
+ - PREFER_LOWEST="--prefer-lowest --prefer-stable"
10
+ - PREFER_LOWEST=""
11
matrix:
12
fast_finish: true
13
allow_failures:
14
- php: nightly
15
+before_script:
16
+ - composer update $PREFER_LOWEST
17
+script: ./vendor/bin/phpunit
18
+after_success: ./vendor/bin/php-coveralls -v
0 commit comments