Skip to content

Commit fbc108e

Browse files
Added Laravel 12 support
1 parent 1268a80 commit fbc108e

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,14 @@ jobs:
99
strategy:
1010
matrix:
1111
php: ['8.1', '8.2', '8.3', '8.4']
12-
laravel: ['10.0', '10.48', '11.0', '11.37']
12+
laravel: ['10.0', '10.48', '11.0', '11.44', '12.0']
1313
exclude:
1414
- php: '8.1'
1515
laravel: '11.0'
1616
- php: '8.1'
17-
laravel: '11.37'
17+
laravel: '11.44'
18+
- php: '8.1'
19+
laravel: '12.0'
1820
name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }}
1921
steps:
2022
- name: Checkout

Changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
## 1.x
66

7+
## Unreleased
8+
###### 2025-XX-YY
9+
10+
- Added Laravel 12 support
11+
712
### 1.12.0
813
###### 2025-01-11
914

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ A quick and easy way to create menus in [Laravel v5.4 - v11](https://laravel.com
2525
| 9.x | 1.9 - 1.10 |
2626
| 10.x | 1.10+ |
2727
| 11.x | 1.11+ |
28+
| 12.x | 1.13+ |
2829

2930
## PHP Compatibility
3031

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "konekt/menu",
3-
"description": "Menus in Laravel 10 - 11",
3+
"description": "Menus in Laravel 10 - 12",
44
"type": "library",
55
"license": "MIT",
66
"minimum-stability": "dev",
@@ -23,8 +23,8 @@
2323
],
2424
"require": {
2525
"php": "^8.1",
26-
"illuminate/support": "^10.0|^11.0",
27-
"illuminate/view": "^10.0|^11.0"
26+
"illuminate/support": "^10.0|^11.0|^12.0",
27+
"illuminate/view": "^10.0|^11.0|^12.0"
2828
},
2929
"autoload": {
3030
"psr-4": {
@@ -33,8 +33,8 @@
3333
},
3434
"require-dev": {
3535
"ext-sqlite3": "*",
36-
"orchestra/testbench": "^8.0|^9.0",
37-
"phpunit/phpunit" : "^10.0",
36+
"orchestra/testbench": "^8.0|^9.0|^10.0",
37+
"phpunit/phpunit" : "^10.0|^11.0",
3838
"mockery/mockery": "^1.0"
3939
},
4040
"autoload-dev": {

0 commit comments

Comments
 (0)