composerの次のチュートリアル コラムでは、Composer の一般的なエラーとその解決策を紹介します。困っている友人の役に立てば幸いです。
Composer の一般的なエラーの解決策
Composer インストールの実行時にエラーが発生しました: 要件をインストール可能なセットに解決できませんでした。これは、composer.json で必要なバージョンが一致しないためです。 完全なエラーは次のとおりです:vagrant@homestead:/usr/share/nginx/html/laravel-blog$ sudocomposerinstall Loadingcomposerrepositorieswithpackage information Installingdependencies (includingrequire-dev) fromlockfile Yourrequirementscouldnot beresolvedto aninstallablesetofpackages. Problem 1 - Installationrequestfor doctrine/instantiator 1.0.3 -> satisfiablebydoctrine/instantiator[1.0.3]. - doctrine/instantiator 1.0.3 requiresphp ~5.3 -> yourPHPversion (7.0.3) doesnot satisfythatrequirement. Problem 2 - doctrine/instantiator 1.0.3 requiresphp ~5.3 -> yourPHPversion (7.0.3) doesnot satisfythatrequirement. - phpunit/phpunit-mock-objects 2.3.0 requiresdoctrine/instantiator ~1.0,>=1.0.1 -> satisfiablebydoctrine/instantiator[1.0.3]. - Installationrequestfor phpunit/phpunit-mock-objects 2.3.0 -> satisfiablebyphpunit/phpunit-mock-objects[2.3.0].
composerinstall --ignore-platform-reqs
composerupdate --ignore-platform-reqs
Cannotcreatecachedirectory /home/vagrant/.composer/cache/repo/https---packagist.org/, or directoryis not writable. Proceedingwithoutcache Cannotcreatecachedirectory /home/vagrant/.composer/cache/files/, or directoryis not writable. Proceedingwithoutcache
sudo chmod -R 777 /home/vagrant/.composer/cache/files/
以上がComposer の一般的なエラーとその解決策の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。