- Issue created by @arisha
When attempting to install the sdc_display module in Drupal using Composer, the installation fails due to dependency resolution issues with sdc_tags. The error message indicates that sdc_display 2.0.0-beta1 requires drupal/sdc_tags *, but the available versions of sdc_tags do not match the project's minimum stability settings.
Run the following command in the project root:
composer require 'drupal/sdc_display:^2.0@beta'
Composer returns the following error:
- drupal/sdc_display 2.0.0-beta1 requires drupal/sdc_tags *
-> found drupal/sdc_tags[dev-2.x, dev-3.x, 2.0.0-beta5, ..., 3.x-dev]
but it does not match your minimum-stability.
Modify composer.json to explicitly allow beta versions:
"minimum-stability": "beta",
"prefer-stable": true
Run the installation command with dependencies:
composer require drupal/sdc_display:^2.0@beta --with-dependencies
Verify that sdc_display and sdc_tags install correctly after applying the fix.
Document the stability requirement in the project's Composer guidelines.
None.
None.