Skip to content

Commit 853a4c7

Browse files
committed
Experimental support for Laravel 5.6 and 5.7
1 parent ecf7170 commit 853a4c7

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

.travis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ php:
66
- 7.0
77
- 7.1
88
- 7.2
9+
- 7.3
910

1011
matrix:
1112
allow_failures:
@@ -14,6 +15,7 @@ matrix:
1415
- php: 7.0 # Laravel <= 5.3 doesn't support PHP 7.0
1516
- php: 7.1 # Laravel <= 5.3 doesn't support PHP 7.1
1617
- php: 7.2 # Laravel <= 5.3 doesn't support PHP 7.2
18+
- php: 7.3 # Laravel <= 5.5 doesn't support PHP 7.3
1719

1820
sudo: false
1921

@@ -23,10 +25,12 @@ env:
2325
- LARAVEL_VERSION="~5.3.0" TESTBENCH_VERSION="~3.3.0"
2426
- LARAVEL_VERSION="~5.4.0" TESTBENCH_VERSION="~3.4.0"
2527
- LARAVEL_VERSION="~5.5.0" TESTBENCH_VERSION="~3.5.0"
28+
- LARAVEL_VERSION="~5.6.0" TESTBENCH_VERSION="~3.6.0"
29+
- LARAVEL_VERSION="~5.7.0" TESTBENCH_VERSION="~3.7.0"
2630

2731
before_install:
28-
- sed -i s/~5.1.0\|\|~5.2.0\|\|~5.3.0\|\|~5.4.0\|\|~5.5.0/${LARAVEL_VERSION}/ composer.json
29-
- sed -i s/~3.1.0\|\|~3.2.0\|\|~3.3.0\|\|~3.4.0\|\|~3.5.0/${TESTBENCH_VERSION}/ composer.json
32+
- sed -i s/~5.1.0\|\|~5.2.0\|\|~5.3.0\|\|~5.4.0\|\|~5.5.0\|\|~5.6.0\|\|~5.7.0/${LARAVEL_VERSION}/ composer.json
33+
- sed -i s/~3.1.0\|\|~3.2.0\|\|~3.3.0\|\|~3.4.0\|\|~3.5.0\|\|~3.6.0\|\|~3.7.0/${TESTBENCH_VERSION}/ composer.json
3034
- composer update # Use update since we'll be changing the composer.json
3135

3236
script: vendor/bin/phpunit tests

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# jquery-laravel [![Build Status](https://travis-ci.org/efficiently/jquery-laravel.png?branch=2.3)](http://travis-ci.org/efficiently/jquery-laravel)
1+
# jquery-laravel [![Build Status](https://travis-ci.org/efficiently/jquery-laravel.png?branch=2.4)](http://travis-ci.org/efficiently/jquery-laravel)
22

3-
jQuery! For Laravel 5.1, 5.2, 5.3, 5.4 and 5.5! So great.
3+
jQuery! For Laravel 5.1, 5.2, 5.3, 5.4, 5.5, 5.6 and 5.7! So great.
44

55
This package provides:
66

composer.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
"laravel 5.3",
1010
"laravel 5.4",
1111
"laravel 5.5",
12+
"laravel 5.6",
13+
"laravel 5.7",
1214
"larasset",
1315
"assets",
1416
"asset pipeline",
@@ -27,13 +29,13 @@
2729
],
2830
"require": {
2931
"php": ">=5.5.0",
30-
"illuminate/support": "~5.1.0||~5.2.0||~5.3.0||~5.4.0||~5.5.0",
31-
"laravelcollective/html": "~5.1.0||~5.2.0||~5.3.0||~5.4.0||~5.5.0"
32+
"illuminate/support": "~5.1.0||~5.2.0||~5.3.0||~5.4.0||~5.5.0||~5.6.0||~5.7.0",
33+
"laravelcollective/html": "~5.1.0||~5.2.0||~5.3.0||~5.4.0||~5.5.0||~5.6.0||~5.7.0"
3234
},
3335
"require-dev": {
34-
"phpunit/phpunit": "~4.5||~5.7||~6.0",
36+
"phpunit/phpunit": "~4.5||~5.7||~6.0||~7.0",
3537
"mockery/mockery": "~0.9.0||~1.0",
36-
"orchestra/testbench": "~3.1.0||~3.2.0||~3.3.0||~3.4.0||~3.5.0",
38+
"orchestra/testbench": "~3.1.0||~3.2.0||~3.3.0||~3.4.0||~3.5.0||~3.6.0||~3.7.0",
3739
"anahkiasen/former": "~4.0.0||~4.1.0"
3840
},
3941
"autoload": {

0 commit comments

Comments
 (0)