- Issue created by @iheb.attia
- Merge request !23#3530627 Allow drupal/typed_data version 2 in module dependencies → (Open) created by Unnamed author
The drupal/pardot
module currently requires drupal/typed_data
using the constraint ^1.0@beta
. However, version 2.x of typed_data
is now available and stable. This strict version constraint prevents the use of typed_data
v2 alongside other modules that require or prefer the newer version.
drupal/pardot
module.drupal/typed_data:^2.0
.Update the composer.json
in drupal/pardot
to allow both version 1.x and 2.x of typed_data
by changing:
"drupal/typed_data": "^1.0@beta"
to:
"drupal/typed_data": "^1.0 || ^2.0"
This change will maintain compatibility with version 1.x while also supporting newer projects using version 2.x of the dependency.
Active
2.0
Code