Skip to content
This repository was archived by the owner on Apr 8, 2024. It is now read-only.

Commit 0f95d1e

Browse files
committed
Update travis to be more like laravel 5.4
1 parent 3aa2179 commit 0f95d1e

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.travis.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ php:
55
- 5.5
66
- 5.6
77
- 7.0
8-
- hhvm
8+
- 7.1
99

1010
env:
1111
global:
@@ -20,6 +20,14 @@ matrix:
2020

2121
sudo: false
2222

23+
cache:
24+
directories:
25+
- $HOME/.composer/cache
26+
27+
before_install:
28+
- if [[ $TRAVIS_PHP_VERSION != 7.1 ]] ; then phpenv config-rm xdebug.ini; fi
29+
- travis_retry composer self-update
30+
2331
install:
2432
- if [[ $setup = 'basic' ]]; then travis_retry composer install --no-interaction --prefer-source; fi
2533
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-source --no-interaction --prefer-stable; fi
@@ -29,4 +37,4 @@ before_script: mkdir -p build/logs
2937

3038
script: vendor/bin/phpunit
3139

32-
after_script: if [[ $TRAVIS_PHP_VERSION != 'hhvm' ]]; then vendor/bin/coveralls -v -n; fi
40+
after_script: vendor/bin/coveralls -v -n

0 commit comments

Comments
 (0)