Skip to content

Commit 41c55e9

Browse files
Merge pull request #11 from parkourben99/master
Add laravel 6 support
2 parents 8d4cd8b + 0cbc3be commit 41c55e9

File tree

3 files changed

+12
-18
lines changed

3 files changed

+12
-18
lines changed

.travis.yml

+2-10
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,10 @@ cache:
66

77
matrix:
88
include:
9-
- php: 7.1
10-
env: ILLUMINATE_VERSION=5.7.*
119
- php: 7.2
12-
env: ILLUMINATE_VERSION=5.7.*
10+
env: ILLUMINATE_VERSION=6.*
1311
- php: 7.3
14-
env: ILLUMINATE_VERSION=5.7.*
15-
- php: 7.1
16-
env: ILLUMINATE_VERSION=5.8.*
17-
- php: 7.2
18-
env: ILLUMINATE_VERSION=5.8.*
19-
- php: 7.3
20-
env: ILLUMINATE_VERSION=5.8.*
12+
env: ILLUMINATE_VERSION=6.*
2113

2214
before_install: travis_retry composer require "illuminate/database:${ILLUMINATE_VERSION}" "illuminate/events:${ILLUMINATE_VERSION}" --no-update -v
2315

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Laravel | Package
2626
5.6.* | 3.0.*
2727
5.7.* | 4.0.*
2828
5.8.* | 5.0.*
29+
6.x | 6.0.*
2930

3031
## Code Samples
3132

composer.json

+9-8
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,13 @@
1111
}
1212
],
1313
"require": {
14-
"php": "^7.1.3",
15-
"illuminate/support": "~5.7",
16-
"illuminate/console": "~5.7",
17-
"illuminate/database": "~5.7",
18-
"illuminate/auth": "~5.7",
19-
"illuminate/notifications": "~5.7"
14+
"php": "^7.2",
15+
"laravel/helpers": "^1.1.0",
16+
"illuminate/support": "^6.0",
17+
"illuminate/console": "^6.0",
18+
"illuminate/database": "^6.0",
19+
"illuminate/auth": "^6.0",
20+
"illuminate/notifications": "^6.0"
2021
},
2122
"autoload": {
2223
"psr-4": {
@@ -25,8 +26,8 @@
2526
},
2627
"require-dev": {
2728
"mockery/mockery": "^1.0",
28-
"phpunit/phpunit": "~7.0",
29-
"orchestra/testbench": "^3.7"
29+
"phpunit/phpunit": "~8.0",
30+
"orchestra/testbench": "^4.0"
3031
},
3132
"autoload-dev": {
3233
"psr-4": {

0 commit comments

Comments
 (0)