- Issue created by @yasheshb
- Status changed to Needs review
4 months ago 11:40am 24 July 2024 - 🇮🇳India sarwan_verma
Hi@ yasheshb,
I have resolved the issue of not being able to install 6.0.0-alpha8 on Drupal 10.3.1. I have also attached the patch.
Kindly review and verify.Thanks!.
- First commit to issue fork.
- 🇺🇦Ukraine vselivanov Kyiv, Ukraine
Hi @sarwan_verma,
I don't think it's possible to solve this with a patch for a usual composer based Drupal setup. Composer checks requirements for all children at the very beginning.
The issue here is that Rules module has a separate 4.0.x-dev → branch for Drupal 10.3+.
I added it to the Quiz composer.json.Also we have an issue to remove Rules dependency https://www.drupal.org/project/quiz/issues/3220608 ✨ Move rules integration into a sub module Active But it's not ready as for now.
For Drupal 10.3+ in the main composer.json you could use:
1. Exclude quiz from the main repository and add this issue fork for it in the repositories section:
"repositories": [ { "type": "git", "url": "https://git.drupalcode.org/issue/quiz-3463528.git" }, { "type": "composer", "url": "https://packages.drupal.org/8", "exclude": [ "drupal/quiz" ] }, ],
2. Use the branch from this issue and fork in the require section:
"require": { "drupal/quiz": "dev-3463528-cannot-install-6.0.0-alpha8", },
- Status changed to Closed: duplicate
4 months ago 7:21pm 25 July 2024 - 🇺🇸United States smustgrave
Appears to be a duplicate of 🐛 This module has lots of dependencies and some dependent modules are not have stable release hence unable to install Needs review , think efforts should be consolidated