Skip to content

Commit

Permalink
Attempt to test multiple laravel versions with travis
Browse files Browse the repository at this point in the history
  • Loading branch information
gerardojbaez committed Nov 28, 2017
1 parent 7f8c23b commit 1ae02c3
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,26 @@ cache:
directories:
- $HOME/.composer/cache

env:
- ILLUMINATE_VERSION=5.3.*

matrix:
include:
- php: 5.6
env: ILLUMINATE_VERSION=5.3.*
- php: 7.0
env: ILLUMINATE_VERSION=5.3.*
- php: 7.1
env: ILLUMINATE_VERSION=5.3.*
- php: 5.6
env: ILLUMINATE_VERSION=5.4.*
- php: 7.0
env: ILLUMINATE_VERSION=5.4.*
- php: 7.1
env: ILLUMINATE_VERSION=5.4.*

before_script:
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
- composer dumpautoload -o
- composer require "illuminate/support:${ILLUMINATE_VERSION}" --no-update
- composer require "illuminate/database:${ILLUMINATE_VERSION}" --no-update
- composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
- composer dumpautoload -o

0 comments on commit 1ae02c3

Please sign in to comment.