Skip to content

Commit

Permalink
Updated travis config
Browse files Browse the repository at this point in the history
  • Loading branch information
PHLAK committed Oct 17, 2019
1 parent 6d4a631 commit 3974449
Showing 1 changed file with 19 additions and 11 deletions.
30 changes: 19 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,29 @@
sudo: false

language: php

env:
- COMPOSER_PREFER=default
- COMPOSER_PREFER=lowest

php:
- 7.1
- 7.2
- 7.3
- nightly
- 7.1
- 7.2
- 7.3
- nightly

matrix:
allow_failures:
- php: nightly
allow_failures:
- php: nightly

cache:
directories:
- $HOME/.composer/cache
- vendor
directories:
- $HOME/.composer/cache
- vendor

before_install: phpenv config-rm xdebug.ini
before_install:
- phpenv config-rm xdebug.ini || true
- travis_retry composer self-update

install: composer install
install:
- "[[ $COMPOSER_PREFER == 'lowest' ]] && composer update --prefer-lowest || composer update"

0 comments on commit 3974449

Please sign in to comment.