【Laravel】「composer require guzzlehttp/guzzle 」が、エラーで失敗する。
【事象】Guzzleがcomposerでインストール出来ない
以下コマンドを実行したら・・
1 |
composer require guzzlehttp/guzzle |
以下のエラーに・・
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
Your requirements could not be resolved to an installable set of packages. Problem 1 - Conclusion: don't install guzzlehttp/guzzle 6.5.2 - Conclusion: don't install guzzlehttp/guzzle 6.5.1 - Conclusion: don't install guzzlehttp/guzzle 6.5.0 - Conclusion: remove guzzlehttp/psr7 1.6.0 - Installation request for guzzlehttp/guzzle ^6.5 -> satisfiable by guzzlehttp/guzzle[6.5.0, 6.5.1, 6.5.2, 6.5.x-dev]. - Conclusion: don't install guzzlehttp/psr7 1.6.0 - guzzlehttp/guzzle 6.5.x-dev requires guzzlehttp/psr7 ^1.6.1 -> satisfiable by guzzlehttp/psr7[1.6.1, 1.x-dev]. - Can only install one of: guzzlehttp/psr7[1.6.1, 1.6.0]. - Can only install one of: guzzlehttp/psr7[1.x-dev, 1.6.0]. - Installation request for guzzlehttp/psr7 (locked at 1.6.0) -> satisfiable by guzzlehttp/psr7[1.6.0]. Installation failed, reverting ./composer.json to its original content. |
エラーを確認する。
1 |
- guzzlehttp/guzzle 6.5.x-dev requires guzzlehttp/psr7 ^1.6.1 -> satisfiable by guzzlehttp/psr7[1.6.1, 1.x-dev]. |
guzzlehttp/psr7 が必要って書いてある!
対処方法
composerで guzzlehttp/psr7 をインストールする。
1 |
composer require guzzlehttp/psr7 |
もう一度、Guzzleをインストールする
1 |
composer require guzzlehttp/guzzle |
できました〜!
この記事がお役に立てたら、是非シェアをお願いします^^