Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

when update composer guzzle abandoned error

When composer update this error occur

Package guzzle/guzzle is abandoned, you should avoid using it. 
Use guzzlehttp/guzzle instead.

How can I fix that?

like image 572
Bilal Ahmed Avatar asked Feb 06 '17 10:02

Bilal Ahmed


2 Answers

If there is a package installed that you did not require explicitly, you can use the why-not command of Composer to check why this package was installed:

composer why guzzle/guzzle
like image 60
xabbuh Avatar answered Oct 22 '22 06:10

xabbuh


this message is not an error

Try

composer update

composer why guzzle/guzzle
like image 5
Bilal Ahmed Avatar answered Oct 22 '22 05:10

Bilal Ahmed