Skip to content

Commit 2131c08

Browse files
authored
Add Laravel 8 compatibility (#35)
1 parent e016c9a commit 2131c08

File tree

3 files changed

+14
-52
lines changed

3 files changed

+14
-52
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ jobs:
1616
fail-fast: true
1717
matrix:
1818
php: [7.2, 7.3, 7.4]
19-
laravel: ["6.0" , "6.*", "7.0", "7.*"]
19+
laravel: ["6.*", "7.0", "7.*", "8.*"]
20+
exclude:
21+
- laravel: "8.*"
22+
php: 7.2
2023

2124
steps:
2225
- uses: actions/checkout@v2

.travis.yml

Lines changed: 0 additions & 43 deletions
This file was deleted.

composer.json

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@
66
"type": "project",
77
"require": {
88
"php": ">=7.2.5",
9-
"illuminate/auth": "6.*|7.*",
10-
"illuminate/console": "6.*|7.*",
11-
"illuminate/contracts": "6.*|7.*",
12-
"illuminate/database": "6.*|7.*",
13-
"illuminate/events": "6.*|7.*",
14-
"illuminate/support": "6.*|7.*",
15-
"illuminate/view": "6.*|7.*"
9+
"illuminate/auth": "6.*|7.*|8.*",
10+
"illuminate/console": "6.*|7.*|8.*",
11+
"illuminate/contracts": "6.*|7.*|8.*",
12+
"illuminate/database": "6.*|7.*|8.*",
13+
"illuminate/events": "6.*|7.*|8.*",
14+
"illuminate/support": "6.*|7.*|8.*",
15+
"illuminate/view": "6.*|7.*|8.*"
1616
},
1717
"require-dev": {
1818
"fzaninotto/faker": "~1.9.1",
1919
"mockery/mockery": "^1.3.1",
2020
"phpunit/phpunit": "^8.5|^9.0",
21-
"orchestra/testbench": "^4.0|^5.0"
21+
"orchestra/testbench": "^4.0|^5.0|^6.0"
2222
},
2323
"autoload": {
2424
"classmap": [
@@ -40,6 +40,8 @@
4040
"preferred-install": "dist",
4141
"sort-packages": true
4242
},
43+
"minimum-stability": "dev",
44+
"prefer-stable": true,
4345
"extra": {
4446
"brach-alias": {
4547
"dev-master": "0.8.x-dev"

0 commit comments

Comments
 (0)