diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ebf1b2..5600404 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All Notable changes to `laravel-menus` will be documented in this file. ## Next +## 8.0.0 - 2022-09-20 + +### Added + +- Laravel 9 support + ## 6.0.0 - 2020-11-11 ### Added diff --git a/README.md b/README.md index 633aee3..27a24f6 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ | 5.8 | ^4.0 | | 6.0 | ^5.0 | | 8.0 | ^7.0 | +| 9.0 | ^8.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. diff --git a/composer.json b/composer.json index 8df2336..8f8da2e 100644 --- a/composer.json +++ b/composer.json @@ -20,11 +20,11 @@ } ], "require": { - "php": ">=7.3", - "illuminate/support": "^8.0", - "illuminate/config": "^8.0", - "illuminate/view": "^8.0", - "laravelcollective/html": "6.2.*" + "php": ">=8.0", + "illuminate/support": "^9.0", + "illuminate/config": "^9.0", + "illuminate/view": "^9.0", + "laravelcollective/html": "^6.3.*" }, "require-dev": { "phpunit/phpunit": "^8.5",