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?
therobfonz/laravel-mandrill-driver
, then it will be usable with guzzle 6.3 – bhuchoovh/ovh
in v3 which is compatible with Guzzle v7? – Nico Haase