laravelのバージョンを5.4から5.5にアップグレードしようとしたところエラーがでて解決方法が分かりません。分かる方いましたら、教えていただきたいです。
https://laravel.com/docs/5.5/upgrade
composer.jsonを変更
- "laravel/framework": "5.4.*", + "laravel/framework": "5.5.*", - "phpunit/phpunit": "~5.7" + "phpunit/phpunit": "~6.0"
composer update
を実行
以下のエラーが出る。
Your requirements could not be resolved to an installable set of packages. Problem 1 - laravelcollective/html v5.4.8 requires illuminate/view 5.4.* -> satisfiable by laravel/framework[v5.4.34], illuminate/view[v5.4.0, v5.4.13, v5.4.17, v5.4.19, v5.4.27, v5.4.36, v5.4.9]. - laravelcollective/html v5.4 requires illuminate/view 5.4.* -> satisfiable by laravel/framework[v5.4.34], illuminate/view[v5.4.0, v5.4.13, v5.4.17, v5.4.19, v5.4.27, v5.4.36, v5.4.9]. - laravelcollective/html v5.4.1 requires illuminate/view 5.4.* -> satisfiable by laravel/framework[v5.4.34], illuminate/view[v5.4.0, v5.4.13, v5.4.17, v5.4.19, v5.4.27, v5.4.36, v5.4.9]. - laravelcollective/html v5.4.2 requires illuminate/view 5.4.* -> satisfiable by laravel/framework[v5.4.34], illuminate/view[v5.4.0, v5.4.13, v5.4.17, v5.4.19, v5.4.27, v5.4.36, v5.4.9]. - laravelcollective/html v5.4.3 requires illuminate/view 5.4.* -> satisfiable by laravel/framework[v5.4.34], illuminate/view[v5.4.0, v5.4.13, v5.4.17, v5.4.19, v5.4.27, v5.4.36, v5.4.9]. - laravelcollective/html v5.4.4 requires illuminate/view 5.4.* -> satisfiable by laravel/framework[v5.4.34], illuminate/view[v5.4.0, v5.4.13, v5.4.17, v5.4.19, v5.4.27, v5.4.36, v5.4.9]. - laravelcollective/html v5.4.5 requires illuminate/view 5.4.* -> satisfiable by laravel/framework[v5.4.34], illuminate/view[v5.4.0, v5.4.13, v5.4.17, v5.4.19, v5.4.27, v5.4.36, v5.4.9]. - laravelcollective/html v5.4.6 requires illuminate/view 5.4.* -> satisfiable by laravel/framework[v5.4.34], illuminate/view[v5.4.0, v5.4.13, v5.4.17, v5.4.19, v5.4.27, v5.4.36, v5.4.9]. - laravelcollective/html v5.4.7 requires illuminate/view 5.4.* -> satisfiable by laravel/framework[v5.4.34], illuminate/view[v5.4.0, v5.4.13, v5.4.17, v5.4.19, v5.4.27, v5.4.36, v5.4.9]. - laravelcollective/html v5.4.8 requires illuminate/view 5.4.* -> satisfiable by laravel/framework[v5.4.34], illuminate/view[v5.4.0, v5.4.13, v5.4.17, v5.4.19, v5.4.27, v5.4.36, v5.4.9]. - Can only install one of: laravel/framework[v5.5.0, v5.4.34]. - don't install illuminate/view v5.4.0|don't install laravel/framework v5.5.0 - don't install illuminate/view v5.4.13|don't install laravel/framework v5.5.0 - don't install illuminate/view v5.4.17|don't install laravel/framework v5.5.0 - don't install illuminate/view v5.4.19|don't install laravel/framework v5.5.0 - don't install illuminate/view v5.4.27|don't install laravel/framework v5.5.0 - don't install illuminate/view v5.4.36|don't install laravel/framework v5.5.0 - don't install illuminate/view v5.4.9|don't install laravel/framework v5.5.0 - Installation request for laravel/framework 5.5.* -> satisfiable by laravel/framework[v5.5.0]. - Installation request for laravelcollective/html ^5.4.0 -> satisfiable by laravelcollective/html[v5.4, v5.4.1, v5.4.2, v5.4.3, v5.4.4, v5.4.5, v5.4.6, v5.4.7, v5.4.8].
"laravelcollective/html":"^5.4.0"
を
"laravelcollective/html":"^5.5.x-dev"
に変更してみたりもしましたが、治りませんでした。
https://packagist.org/packages/laravelcollective/html#dev-master
よろしくお願いいたします。
回答2件
下記のような回答は推奨されていません。
このような回答には修正を依頼しましょう。