-
Notifications
You must be signed in to change notification settings - Fork 119
Description
composer require nwidart/laravel-menus -W
Using version ^7.0 for nwidart/laravel-menus
./composer.json has been updated
Running composer update nwidart/laravel-menus --with-all-dependencies
Loading composer repositories with package information
Updating dependencies
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Root composer.json requires nwidart/laravel-menus ^7.0 -> satisfiable by nwidart/laravel-menus[7.0].
- nwidart/laravel-menus 7.0 requires laravelcollective/html 6.2.* -> found laravelcollective/html[v6.2.0, v6.2.1] but it conflicts with your root composer.json require (^6.3).
Installation failed, reverting ./composer.json and ./composer.lock to their original content.
It can be solved changing the lines
"require": {
"php": ">=7.3",
"illuminate/support": "^8.0",
"illuminate/config": "^8.0",
"illuminate/view": "^8.0",
"laravelcollective/html": "6.2.*"
},
to
"require": {
"php": ">=7.3",
"illuminate/support": ">=8.0",
"illuminate/config": ">=8.0",
"illuminate/view": ">=8.0",
"laravelcollective/html": ">=6"
},
No problems on my needs, but futher tests should be passed