Magento – Composer install issue in Magento 2.3

composermagento2.3php-7.2

I have one issue when I run composer install command.

enter image description here

How to solve this issue.

Thanks.

Best Answer

In my composer.lock was wrong info about this and any other packages yet. I have revert my changes with composer.json / composer.lock and it works for me. You can try:

  1. Clear the composer cache
  2. Remove the vendors
  3. Change in composer.json version of packages to static (e.g 1.2.0) to avoid update of them
  4. Remove composer.lock
  5. Start composer install. Then it should work correclty.
Related Topic