Skip to content

Commit a6704c3

Browse files
committed
Add Laravel 11 & 12 support
1 parent 90ca519 commit a6704c3

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
Changelog
22
=========
33

4+
2.0.0 (2025-10-30)
5+
------------------
6+
7+
Add Laravel 11 & 12 support
8+
- Support PHP 8.2 and 8.4
9+
- Add illuminate/support ^11.0 || ^12.0
10+
- Add illuminate/database ^11.0 || ^12.0
11+
- Prepare doctrine/dbal ^4.0 support (optional)
12+
13+
Breaking changes:
14+
- Drop Laravel 8, 9, 10 support
15+
- Drop PHP 8.1 support"
16+
17+
418
1.0.0 (2023-07-03)
519
------------------
620

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
],
1313
"license": "MIT",
1414
"require": {
15-
"php": "^8.1",
16-
"illuminate/support": "^8.0 || ^9.0 || ^10.0",
17-
"illuminate/database": "^8.0 || ^9.0 || ^10.0",
18-
"doctrine/dbal": "^3.5 || ^3.6"
15+
"php": "^8.2 || ^8.4",
16+
"illuminate/support": "^11.0 || ^12.0",
17+
"illuminate/database": "^11.0 || ^12.0",
18+
"doctrine/dbal": "^3.5 || ^4.0"
1919
},
2020
"autoload": {
2121
"psr-4": {

0 commit comments

Comments
 (0)