Skip to content

Commit

Permalink
Adds specific Laravel versions back to Travis build
Browse files Browse the repository at this point in the history
  • Loading branch information
BenConstable committed Apr 28, 2018
1 parent 451a84b commit 68b1d9a
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,27 @@ php:
- 7.0
- 7.1

env:
- LARAVEL_VERSION=5.4.*
- LARAVEL_VERSION=5.5.*
- LARAVEL_VERSION=5.6.*

matrix:
exclude:
- php: 7.0
env: LARAVEL_VERSION=5.6.*

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

before_install:
- phpenv config-rm xdebug.ini
- composer require --no-update "phpspec/phpspec:~4.0"
- composer require --no-update "laravel/framework:${LARAVEL_VERSION}"

install:
- composer update
- composer update --prefer-stable --no-interaction --no-suggest

script:
- ./bin/phpspec run

0 comments on commit 68b1d9a

Please sign in to comment.