In my Laravel 8 project I had to install the mailer therobfonz/laravel-mandrill-driver
; now I have to install the SMS driver ovh/ovh
.
For the moment in my composer.json
file I have:
"guzzlehttp/guzzle": "^7.0",
"therobfonz/laravel-mandrill-driver": "^3.0"
When I type: composer require ovh/ovh
, I have this error:
ovh/ovh v2.1.0 requires guzzlehttp/guzzle ^6.0 -> found guzzlehttp/guzzle[6.0.0, ..., 6.5.x-dev] but it conflicts with your root composer.json require (^7.0).
I have tried to edit composer.json
by changing the version of guzzle
to "^6.0", then doing composer update
. However this results in an error (mandrill
requires guzzle ^7.0
).
What could I do?
question from:
https://stackoverflow.com/questions/66060290/ovh-ovh-requires-guzzlehttp6-0-while-therobfonz-laravel-mandrill-driver-require 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…