- Issue created by @diegodz
The WIP module's composer.json
file restricts installation to drupal/core
version ^10.1
, which causes a conflict when trying to require the module on a Drupal 11 project via Composer.
Despite this, the module appears to function correctly on Drupal 11, and there are no known compatibility issues. Updating the version constraint would make the module installable and usable on both Drupal 10 and 11.
drupal/recommended-project
.composer require drupal/wip
.drupal/core
.Update the version constraint in composer.json
:
"require": { "drupal/core": "^10.1 || ^11", "drupal/paragraphs": "^1.19" }
This allows the module to be installed on both Drupal 10 and Drupal 11.
composer.json
constraint.Active
1.0
Code