Skip to content

Commit

Permalink
Merge branch 'release/3.4.3'
Browse files Browse the repository at this point in the history
* release/3.4.3:
  Composer update
  Composer installation step
  Added installation options for stability
  Allow failure for PHP 7.2
  Update PHP versions
  • Loading branch information
austintoddj committed Aug 4, 2017
2 parents bc11dc7 + 549ca21 commit 829d27f
Show file tree
Hide file tree
Showing 2 changed files with 112 additions and 111 deletions.
20 changes: 17 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,27 @@ language: php

php:
- 5.6
- 7.0
- 7.0.21
- 7.1
- 7.2

env:
global:
- setup=basic

matrix:
allow_failures:
- php: 7.2
fast_finish: true
include:
- php: 5.6
env: setup=lowest
- php: 5.6
env: setup=stable

before_install:
- if [[ $TRAVIS_PHP_VERSION != 7.1 ]] ; then phpenv config-rm xdebug.ini; fi
- if [[ $TRAVIS_PHP_VERSION != 7.2 ]] ; then phpenv config-rm xdebug.ini; fi
- mv .env.example .env
- travis_retry composer self-update

install:
- composer install
Expand Down
Loading

0 comments on commit 829d27f

Please sign in to comment.