Skip to content

Commit a44395f

Browse files
committed
Add support for Laravel 12
1 parent 6639381 commit a44395f

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
matrix:
1414
php: [8.1, 8.2, 8.3]
1515
os: [ubuntu-latest]
16-
laravel: [9,10,11]
16+
laravel: [10,11,12]
1717
exclude:
1818
- php: 8.1
1919
os: ubuntu-latest
2020
laravel: 11
21-
- php: 8.3
21+
- php: 8.1
2222
os: ubuntu-latest
23-
laravel: 9
23+
laravel: 12
2424

2525
name: Laravel ${{ matrix.laravel }} - PHP ${{ matrix.php }}
2626

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
### Added
6+
7+
- Support for Laravel 12
8+
9+
### Changed
10+
11+
- Dropped support for Laravel 9
12+
513
## [2.0.1] - 2025-06-09
614

715
### Fixed

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
}],
1616
"require": {
1717
"php": ">= 8.1",
18-
"illuminate/contracts": "^9.0|^10.0|^11.0",
19-
"illuminate/database": "^9.0|^10.0|^11.0",
20-
"illuminate/support": "^9.0|^10.0|^11.0",
18+
"illuminate/contracts": "^10.0|^11.0|^12.0",
19+
"illuminate/database": "^10.0|^11.0|^12.0",
20+
"illuminate/support": "^10.0|^11.0|^12.0",
2121
"mll-lab/laravel-graphiql": "^3.2",
2222
"rcrowe/twigbridge": "^0.14.3",
23-
"rebing/graphql-laravel": "^9.2.0"
23+
"rebing/graphql-laravel": "^9.8.0"
2424
},
2525
"require-dev": {
2626
"nunomaduro/collision": "^6.1",

0 commit comments

Comments
 (0)