-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Laravel 9 installation issue #59
Comments
Small changes this composer.json file. "require": { |
Used but can`t this solved Problem 1 You can also try re-running composer require with an explicit version constraint, e.g. "composer require nwidart/laravel-menus:*" to figure out if any version is installable, or "composer require nwidart/laravel-menus:^2.1" if you know which you need. |
Também não consegui instalar no laravel 9, alguém sabe quando vai estar disponivel ? |
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
The text was updated successfully, but these errors were encountered: