- Issue created by @matthewv789
- π·πΊRussia walkingdexter
@matthewv789 I can't reproduce this problem on a fresh install. Try
composer why-not drupal/simple_sitemap 4.2.2
orcomposer require "drupal/simple_sitemap:4.2.2" --dry-run
to get more details. Most likely the problem is related to your environment or Composer configuration. - Status changed to Postponed: needs info
8 days ago 8:11pm 1 May 2025 - πΊπΈUnited States ssd2698
You might want to check which Drush version is currently being used in your project. The simple_sitemap module version 4.2.2 includes the following Composer constraint:
"conflict": { "drush/drush": "<12.5.1" }
This means it won't install if you're using a version of Drush less than 12.5.1. If possible, try upgrading Drush to version 12.5.1 or higher, and then run
composer require drupal/simple_sitemap:^4.2.2
again.Hope this helps!
- πΊπΈUnited States ssd2698
You might want to check which Drush version is currently being used in your project. The simple_sitemap module version 4.2.2 includes the following Composer constraint:
Edit "conflict": { "drush/drush": "<12.5.1" }
This means it won't install if you're using a version of Drush less than 12.5.1. If possible, try upgrading Drush to version 12.5.1 or higher, and then run:
composer require drupal/simple_sitemap:^4.2.2
. That should allow Composer to resolve and install the correct version.Hope this helps!