We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9ebba1f + 6cab179 commit 68aef29Copy full SHA for 68aef29
.travis.yml
@@ -25,9 +25,10 @@ matrix:
25
env: deps="low"
26
27
before_script:
28
- - if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then pecl install geoip; fi
+ - if [ "$TRAVIS_PHP_VERSION" != "hhvm" && "$TRAVIS_PHP_VERSION" != "7.0" ]; then pecl install geoip; fi
29
- composer self-update
30
- if [ "$deps" = "low" ]; then composer update --prefer-dist --prefer-lowest; fi
31
- if [ "$deps" = "" ]; then composer install --prefer-dist --no-interaction; fi
32
+ - if [ "$TRAVIS_PHP_VERSION" == "7.0" ]; then composer require "geoip/geoip"; fi
33
34
script: phpunit --coverage-text
0 commit comments