Skip to content

Commit

Permalink
Use specific PHPUnit for Laravel versions
Browse files Browse the repository at this point in the history
  • Loading branch information
aimeos committed Sep 3, 2017
1 parent 5252ef5 commit 742bc4b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ php:
- 7.1

env:
- LARAVEL_VERSION=5.5.*
- LARAVEL_VERSION=5.4.*
- LARAVEL_VERSION=5.3.*
- LARAVEL_VERSION=5.5.* PHPUNIT_VERSION=~6.0
- LARAVEL_VERSION=5.4.* PHPUNIT_VERSION=~5.7
- LARAVEL_VERSION=5.3.* PHPUNIT_VERSION=~5.7

before_script:
- composer self-update
- composer require "laravel/framework:${LARAVEL_VERSION}"
- composer require "laravel/framework:${LARAVEL_VERSION}" "phpunit/phpunit:${PHPUNIT_VERSION}"
- mysql -e 'create database laravel;'

script: vendor/bin/phpunit --coverage-clover coverage.xml
Expand All @@ -25,4 +25,4 @@ matrix:
fast_finish: true
exclude:
- php: 5.6
env: LARAVEL_VERSION=5.5.*
env: LARAVEL_VERSION=5.5.* PHPUNIT_VERSION=~6.0

0 comments on commit 742bc4b

Please sign in to comment.