Skip to content

Commit b3aaa65

Browse files
committed
Add support for Laravel 9
1 parent d5f9ab0 commit b3aaa65

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: [7.3, 7.4, 8.0]
13-
laravel: [6.*, 7.*, 8.*]
12+
php: [7.4, 8.0, 8.1]
13+
laravel: [6.*, 7.*, 8.*, 9.*]
1414
include:
15+
- laravel: 9.*
16+
testbench: 7.*
1517
- laravel: 8.*
1618
testbench: 6.*
1719
- laravel: 7.*

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@
1818
}
1919
],
2020
"require": {
21-
"php": "^7.3|^8.0",
22-
"illuminate/support": "^6.0|^7.0|^8.0",
21+
"php": "^7.4|^8.0",
22+
"illuminate/support": "^6.0|^7.0|^8.0|^9.0",
2323
"league/openapi-psr7-validator": "^0.14|^0.15|^0.16|^0.17",
2424
"nyholm/psr7": "^1.3",
2525
"symfony/psr-http-message-bridge": "^2.0"
2626
},
2727
"require-dev": {
28-
"orchestra/testbench": "4.*|5.*|6.*",
28+
"orchestra/testbench": "4.*|5.*|6.*|7.*",
2929
"mockery/mockery": "^1.3.1",
3030
"phpunit/phpunit": "^9.0 <9.5",
31-
"fzaninotto/faker": "^1.9.1"
31+
"fakerphp/faker": "^1.9.1"
3232
},
3333
"autoload": {
3434
"psr-4": {

0 commit comments

Comments
 (0)