- 🇭🇺Hungary karol haltenberger
This one is more up-to-date: https://www.drupal.org/project/iframe_video/issues/3335041 📌 Need to add drupal dependency in info.yml file. RTBC
The iframe_video
module can't be installed on Drupal core >=9.4.4 due to composer dependency issue.
Since https://www.drupal.org/node/3295096 → , this happens:
Problem 1
- Root composer.json requires drupal/iframe_video ^1.0 -> satisfiable by drupal/iframe_video[1.0.2].
- drupal/iframe_video 1.0.2 requires drupal/media * -> found drupal/media[dev-1.x, 1.x-dev (alias of dev-1.x)] but it does not match your minimum-stability.
Install Drupal core 9.4.5 using composer
, then try installing iframe_video
.
Update the format for the dependencies in the *.info.yml
to indicate the package name, in addition to the module name.do
From:
dependencies:
- media
- media_library
- iframe
to:
dependencies:
- drupal:media
- drupal:media_library
- iframe:iframe
Similar issues and solutions can be seen for other modules:
write patch
none
none
none
Closed: duplicate
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
This one is more up-to-date: https://www.drupal.org/project/iframe_video/issues/3335041 📌 Need to add drupal dependency in info.yml file. RTBC