Skip to content

Commit 16bb7f5

Browse files
committed
Add support for Laravel 11
1 parent 2d36553 commit 16bb7f5

File tree

3 files changed

+7
-12
lines changed

3 files changed

+7
-12
lines changed

README.md

+3-11
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This package is to displaying the model data in a Detail table.
1414
![Detail view appearance](https://github.com/itstructure/laravel-detail-view/blob/main/laravel_detail_view_appearance_en.png)
1515

1616
## Requirements
17-
- laravel 5.5+ | 6+ | 7+ | 8+ | 9+ | 10+
17+
- laravel 5.5+ | 6+ | 7+ | 8+ | 9+ | 10+ | 11+
1818
- php >= 7.1
1919
- composer
2020

@@ -24,7 +24,7 @@ This package is to displaying the model data in a Detail table.
2424

2525
Run the composer command:
2626

27-
`composer require itstructure/laravel-detail-view "~1.0.4"`
27+
`composer require itstructure/laravel-detail-view "~1.0.5"`
2828

2929
### If you are testing this package from a local server directory
3030

@@ -50,14 +50,6 @@ Then run command:
5050

5151
`composer require itstructure/laravel-detail-view:dev-main --prefer-source`
5252

53-
### Registration
54-
55-
Register service provider in **config/app.php**
56-
57-
```php
58-
Itstructure\DetailView\DetailViewServiceProvider::class,
59-
```
60-
6153
### Publish files (Not necessary)
6254

6355
- To publish views run command:
@@ -303,6 +295,6 @@ $detailData = [
303295

304296
## License
305297

306-
Copyright © 2021-2023 Andrey Girnik [email protected].
298+
Copyright © 2021-2024 Andrey Girnik [email protected].
307299

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

changelog.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
### CHANGE LOG:
22

3+
**1.0.5 March 27, 2024:**
4+
- Add support for Laravel 11.
5+
36
**1.0.4 February 25, 2023:**
47
- Add support for Laravel 10.
58

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
],
1515
"require": {
1616
"php": ">=7.1.0",
17-
"laravel/framework": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0"
17+
"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"
1818
},
1919
"autoload": {
2020
"psr-4": {

0 commit comments

Comments
 (0)