Skip to content

Commit a3d915d

Browse files
committed
Add support for Laravel 10 and 11
1 parent 4f2a81e commit a3d915d

File tree

3 files changed

+15
-11
lines changed

3 files changed

+15
-11
lines changed

README.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Data from the **database** is taken from a model and must be instance of **Illum
1919

2020
## 2 Requirements
2121

22-
- laravel 5.5+ | 6+ | 7+ | 8+ | 9+
22+
- laravel 5.5+ | 6+ | 7+ | 8+ | 9+ | 10+ | 11+
2323
- php >= 7.1.0
2424
- composer
2525

@@ -29,7 +29,7 @@ Data from the **database** is taken from a model and must be instance of **Illum
2929

3030
Via composer:
3131

32-
`composer require itstructure/laravel-multi-menu "~2.0.7"`
32+
`composer require itstructure/laravel-multi-menu "~2.0.8"`
3333

3434
### 3.2 If you are testing this package from local server directory
3535

@@ -55,13 +55,7 @@ Then run command:
5555

5656
`composer require itstructure/laravel-multi-menu:dev-master --prefer-source`
5757

58-
### 3.3 App config
59-
60-
Add to application `config/app.php` file to section **providers**:
61-
62-
`Itstructure\MultiMenu\MultiMenuServiceProvider::class`
63-
64-
### 3.4 Publish in application
58+
### 3.3 Publish in application
6559

6660
- To publish all parts run command:
6761

@@ -232,6 +226,6 @@ This function will rebuild the chain.
232226

233227
## License
234228

235-
Copyright © 2018-2023 Andrey Girnik girnikandrey@gmail.com.
229+
Copyright © 2018-2024 Andrey Girnik girnikandrey@gmail.com.
236230

237231
Licensed under the [MIT license](http://opensource.org/licenses/MIT). See LICENSE.txt for details.

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
### CHANGE LOG:
22

3+
**2.0.8 March 31, 2024:**
4+
- Add support for Laravel 10 and 11.
5+
36
**2.0.7 January 26, 2023:**
47
- Upgrade copyright year.
58

composer.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,19 @@
1313
"minimum-stability": "dev",
1414
"prefer-stable": true,
1515
"require": {
16-
"laravel/framework": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0",
16+
"laravel/framework": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
1717
"php": ">=7.1.0"
1818
},
1919
"autoload": {
2020
"psr-4": {
2121
"Itstructure\\MultiMenu\\": "src"
2222
}
23+
},
24+
"extra": {
25+
"laravel": {
26+
"providers": [
27+
"Itstructure\\MultiMenu\\MultiMenuServiceProvider"
28+
]
29+
}
2330
}
2431
}

0 commit comments

Comments
 (0)