Skip to content

Commit 8b5db3b

Browse files
committed
Config tests for supporting Laravel 5.2
1 parent b4473e0 commit 8b5db3b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ php:
99

1010
matrix:
1111
allow_failures:
12-
- php: 5.4 # Allow PHP 5.4 failures because Laravel 5.1 requires PHP >= 5.5
12+
- php: 5.4 # Allow PHP 5.4 failures because Laravel >= 5.1 requires PHP >= 5.5
1313
- php: hhvm
1414
- php: 7.0
1515

@@ -18,10 +18,11 @@ sudo: false
1818
env:
1919
- LARAVEL_VERSION="~5.0.0" TESTBENCH_VERSION="~3.0.0"
2020
- LARAVEL_VERSION="~5.1.0" TESTBENCH_VERSION="~3.1.0"
21+
- LARAVEL_VERSION="~5.2.0" TESTBENCH_VERSION="~3.2.0"
2122

2223
before_install:
23-
- sed -i s/~5.0.0\|\|~5.1.0/${LARAVEL_VERSION}/ composer.json
24-
- sed -i s/~3.0.0\|\|~3.1.0/${TESTBENCH_VERSION}/ composer.json
24+
- sed -i s/~5.0.0\|\|~5.1.0\|\|~5.2.0/${LARAVEL_VERSION}/ composer.json
25+
- sed -i s/~3.0.0\|\|~3.1.0\|\|~3.2.0/${TESTBENCH_VERSION}/ composer.json
2526
- composer update # Use update since we'll be changing the composer.json
2627

2728
script: vendor/bin/phpunit tests

0 commit comments

Comments
 (0)