- Issue created by @maxilein
- πΊπΈUnited States mark_fullmer Tucson
Hi!
Based on the output from Composer, it looks like you have a requirement somewhere for Drupal 10 ("but the package is fixed to 10.1.2"), and you have a version of
date_augmenter
,1.0.0
, that is not Drupal 10 compatible.Since
date_augmenter
is a dependency ofaddtocal_augment
, that is what is causing the conflict.You should be able to resolve this with one of the following:
1. Request all dependencies be updated as well:
composer update drupal/addtocal_augment -W
2. Remove the modules, then re-add addtocal_augment.
composer remove drupal/addtocal_augment -W composer remove drupal/date_augmenter -W composer require drupal/addtocal_augment
- π¦πΉAustria maxilein
Thank you.
I tried 1. + 2.
Both did not work. I cleared caches inbetween...After removing both modules I tried explicitly to add the current version:
composer require 'drupal/date_augmenter:^1.1@beta'But the results were the same.
composer require drupal/addtocal_augment:*
Did provide the same error.
Thank you. For the time being I just uninstalled both. They are not essential just yet.
Maybe it will work with another version in the future. And you are right the problem seems to be with the date_augmenter. - Status changed to Fixed
about 1 year ago 9:54pm 11 December 2023 - πΊπΈUnited States mark_fullmer Tucson
The 1.1.0-beta3 release ( https://www.drupal.org/project/addtocal_augment/releases/1.1.0-beta3 β ) resolves this issue by way of the change in π Update date_augmenter dependency Fixed .
Marking this issue as fixed. Thanks!
Automatically closed - issue fixed for 2 weeks with no activity.