Skip to content

Commit 3e024d6

Browse files
L3o-poldjeromegamez
authored andcommitted
Add support for Laravel 12
1 parent 25c0418 commit 3e024d6

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/tests.yml

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
- "8.4"
3232
laravel:
3333
- "11"
34+
- "12"
3435

3536
steps:
3637
- name: Checkout code

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## Unreleased
44

5+
* Added support for Laravel 12
56
* Dropped support for Laravel 9 and 10
67
* Dropped support for PHP 8.1 (Laravel 11 requires at least PHP 8.2)
78

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
"require": {
1414
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
1515
"kreait/firebase-php": "^7.13",
16-
"illuminate/contracts": "^11.0",
17-
"illuminate/notifications": "^11.0",
18-
"illuminate/support": "^11.0",
16+
"illuminate/contracts": "^11.0 || ^12.0",
17+
"illuminate/notifications": "^11.0 || ^12.0",
18+
"illuminate/support": "^11.0 || ^12.0",
1919
"symfony/cache": "^6.1.2 || ^7.0.3"
2020
},
2121
"require-dev": {
22-
"orchestra/testbench": "^9.0",
22+
"orchestra/testbench": "^9.0 || ^10.0",
2323
"laravel/pint": "^1.14",
2424
"phpunit/phpunit": "^11.4.3"
2525
},

0 commit comments

Comments
 (0)