Skip to content

Commit

Permalink
Preparing laravel-menus 7.0 with support of laravel 8
Browse files Browse the repository at this point in the history
  • Loading branch information
nWidart committed Nov 11, 2020
1 parent e1610e1 commit 1ef9064
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All Notable changes to `laravel-menus` will be documented in this file.

## Next

## 6.0.0 - 2020-11-11

### Added

- Laravel 8 support

## 5.0.0 - 2019-10-01

### Added
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
| 5.7 | ^3.0 |
| 5.8 | ^4.0 |
| 6.0 | ^5.0 |
| 8.0 | ^7.0 |

`nwidart/laravel-menus` is a laravel package which created to manage menus. It has a feature called presenters which enables easy styling and custom structure of menu rendering.

Expand Down
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@
}
],
"require": {
"php": ">=7.1",
"illuminate/support": "^6.0",
"illuminate/config": "^6.0",
"illuminate/view": "^6.0",
"laravelcollective/html": "6.0.*"
"php": ">=7.3",
"illuminate/support": "^8.0",
"illuminate/config": "^8.0",
"illuminate/view": "^8.0",
"laravelcollective/html": "6.2.*"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"phpunit/phpunit": "^8.5",
"mockery/mockery": "~1.0",
"orchestra/testbench": "^4.0",
"friendsofphp/php-cs-fixer": "^2.15"
"orchestra/testbench": "^6.2",
"friendsofphp/php-cs-fixer": "^2.16"
},
"autoload": {
"psr-4": {
Expand All @@ -44,7 +44,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "5.0-dev"
"dev-master": "6.0-dev"
},
"laravel": {
"providers": [
Expand Down

0 comments on commit 1ef9064

Please sign in to comment.