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 4aa2d17 commit 93e0c91Copy full SHA for 93e0c91
.travis.yml
@@ -7,12 +7,12 @@ cache:
7
- $HOME/.local
8
- $HOME/ocular.phar
9
10
-env:
11
- - PREFER_LOWEST=yes
12
-
13
matrix:
14
fast_finish: true
15
include:
+ - php: 7.1
+ env:
+ - PREFER_LOWEST="1"
16
- php: 7.1
17
env:
18
- CODE_COVERAGE="1"
@@ -36,7 +36,7 @@ install:
36
- if [ "${CODE_COVERAGE}" == "1" ]; then
37
wget -q -N -t 3 --retry-connrefused 'https://scrutinizer-ci.com/ocular.phar' || return 0;
38
fi
39
- - if test "$PREFER_LOWEST" = yes ; then
+ - if [ "$PREFER_LOWEST" == "1" ]; then
40
composer update --prefer-dist --prefer-lowest;
41
else
42
composer install --prefer-dist;
0 commit comments