I am trying to install a library, it was said in instructions to do it like this
composer require mailgun/mailgun-php php-http/curl-client guzzlehttp/psr7
but then I get "Your requirements could not be resolved to an installable set of packages"
so I try to set them right and in the end come down to
composer require mailgun/mailgun-php php-http/curl-client guzzlehttp/psr7 php-http/client-common:^1.1 php-http/httplug:^1.0 php-http/curl-client:^2.0
and then I get stuck with this message
php-http/curl-client 2.0.0 requires php-http/httplug ^2.0 -> satisfiable by php-http/httplug[2.0.x-dev, v2.0.0] but these conflict with your requirements or minimum-stability
which seems contrary to request before. So I am not sure what I am doing wrong here and how should I resolve this?