File tree Expand file tree Collapse file tree 3 files changed +15
-11
lines changed Expand file tree Collapse file tree 3 files changed +15
-11
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ Data from the **database** is taken from a model and must be instance of **Illum
19
19
20
20
## 2 Requirements
21
21
22
- - laravel 5.5+ | 6+ | 7+ | 8+ | 9+
22
+ - laravel 5.5+ | 6+ | 7+ | 8+ | 9+ | 10+ | 11+
23
23
- php >= 7.1.0
24
24
- composer
25
25
@@ -29,7 +29,7 @@ Data from the **database** is taken from a model and must be instance of **Illum
29
29
30
30
Via composer:
31
31
32
- ` composer require itstructure/laravel-multi-menu "~2.0.7 " `
32
+ ` composer require itstructure/laravel-multi-menu "~2.0.8 " `
33
33
34
34
### 3.2 If you are testing this package from local server directory
35
35
@@ -55,13 +55,7 @@ Then run command:
55
55
56
56
` composer require itstructure/laravel-multi-menu:dev-master --prefer-source `
57
57
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
65
59
66
60
- To publish all parts run command:
67
61
@@ -232,6 +226,6 @@ This function will rebuild the chain.
232
226
233
227
## License
234
228
235
- Copyright © 2018-2023 Andrey Girnik girnikandrey@gmail.com .
229
+ Copyright © 2018-2024 Andrey Girnik girnikandrey@gmail.com .
236
230
237
231
Licensed under the [ MIT license] ( http://opensource.org/licenses/MIT ) . See LICENSE.txt for details.
Original file line number Diff line number Diff line change 1
1
### CHANGE LOG:
2
2
3
+ ** 2.0.8 March 31, 2024:**
4
+ - Add support for Laravel 10 and 11.
5
+
3
6
** 2.0.7 January 26, 2023:**
4
7
- Upgrade copyright year.
5
8
Original file line number Diff line number Diff line change 13
13
"minimum-stability" : " dev" ,
14
14
"prefer-stable" : true ,
15
15
"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 " ,
17
17
"php" : " >=7.1.0"
18
18
},
19
19
"autoload" : {
20
20
"psr-4" : {
21
21
"Itstructure\\ MultiMenu\\ " : " src"
22
22
}
23
+ },
24
+ "extra" : {
25
+ "laravel" : {
26
+ "providers" : [
27
+ " Itstructure\\ MultiMenu\\ MultiMenuServiceProvider"
28
+ ]
29
+ }
23
30
}
24
31
}
You can’t perform that action at this time.
0 commit comments