I have installed one package via Composer and it installed Guzzlehttp too, because of the package. After that I tried to install another package via Composer, which requires Guzzlehttp too and Composer, tried to install it again.
But I get that error :
Problem 1
Can only install one of: guzzlehttp/guzzle[6.2.0, 6.0.2].
Can only install one of: guzzlehttp/guzzle[6.0.2, 6.2.0].
Can only install one of: guzzlehttp/guzzle[6.0.2, 6.2.0].
I see what is the problem, but I do not know how to fix it.
The "Can only install one [x, y]" message appears when two different packages point to the same dependency, but different major, mutually exclusive versions where only one can be installed.
For example, one version can be "locked at" due to the information present in your composer.lock
file which may conflict with what you're trying to install. In this case, when the confusion error comes with "locked at x.y.z" message, you may use the following commands to understand the existing dependencies of installed packages:
composer show -t
Note: -t
shows as a nested tree view, drop it to see the flat list.
To see where the problematic package is referenced from in your project, run:
composer why org/package -t
Note: -t
shows as a nested tree view, drop it to see the flat list.
To see the details of the package which you're trying to install, you may run:
composer show -a org/package # Package to inspect.
Note: To inspect the specific version, add x.y.z
, e.g.: composer show -a guzzlehttp/guzzle 6.2.0
To further troubleshoot the problem, depending on your situation, you can try to:
Update the existing packages with dependencies via:
composer update --with-dependencies
Upgrade or remove conflicting dependencies from your composer.json
(keep it simple).
composer why org/package
to see where the package is referenced (or check the content of composer.lock
manually by looking for x.y.z
). If won't help, consider removing composer.lock
and re-try again;composer.json
from the different folder, select n
.composer.json
, simplified configuration on the empty folder.composer diagnose
to check for any common error.-v
/-vv
/-vvv
to increase the verbosity of your commands.I had a similar issue and I just had to run
composer update
before installing the new package. This will work depending on whether the other installed packages have updated their dependencies too though.
I solved this by adding a '^' before the version number. For example
composer require drupal/slack:^1.2.0
instead of
composer require drupal/slack:1.2.0
when the latter caused this error.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With