- Issue created by @anandaakrishnan g a
The insert_view
module currently supports Drupal versions 8, 9, and 10, as specified in its composer.json
file:
"drupal/core": "^8.8 || ^9 || ^10"
However, this constraint causes a conflict when attempting to install the module on Drupal 11 (^11.1
), preventing its use in sites running the latest Drupal version.
This issue impacts:
insert_view
module.^11.1
) using Composer:composer create-project drupal/recommended-project:11.x my_site
insert_view
module via Composer:composer require drupal/insert_view
Problem 1 - Root composer.json requires drupal/insert_view ^2.1 -> satisfiable by drupal/insert_view[2.1.0]. - drupal/insert_view 2.1.0 requires drupal/core ^8.8 || ^9 || ^10 -> found drupal/core[11.x] but it conflicts with your root composer.json require (^11.1).
Update the composer.json
file for the insert_view
module to include support for Drupal 11. The require
constraint should be modified as follows:
"drupal/core": "^8.8 || ^9 || ^10 || ^11"
This change will:
Additionally:
composer.json
file with the revised version constraint.2.1.1
or 2.2.0
) with Drupal 11 support.No user interface changes are anticipated.
No API changes are expected.
No changes to the data model are required.
Active
2.1
Code