You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I maintain a Drupal module called "Feeds". Wit that module you can import content on a Drupal site. It uses laminas/laminas-feed to parse RSS feeds.
The issue is that Feeds cannot be installed currently on Drupal 10 + PHP 8.2 because Drupal 10 requires psr/container ~2.0.2 and only laminas/laminas-servicemanager 4.0.x is compatible with PHP 8.2 + psr/container ~2.0.2. (For some reason though laminas/laminas-servicemanager 3.15 is compatible with psr/container 2.0.2 too, but not with PHP 8.2, hence the reason why my module is installable on Drupal 10 + PHP 8.1.)
Anyway, it would help if this project can declare a compatibility with laminas/laminas-servicemanager ^4.0.
The only way to avoid getting pinned to container:1 is, as you mentioned, the un-released service manager v4, or, dropping the hard dependency on service manager.
I've added a patch which does the latter in #76 - if that works, we can release a minor yes?
I maintain a Drupal module called "Feeds". Wit that module you can import content on a Drupal site. It uses laminas/laminas-feed to parse RSS feeds.
The issue is that Feeds cannot be installed currently on Drupal 10 + PHP 8.2 because Drupal 10 requires psr/container ~2.0.2 and only laminas/laminas-servicemanager 4.0.x is compatible with PHP 8.2 + psr/container ~2.0.2. (For some reason though laminas/laminas-servicemanager 3.15 is compatible with psr/container 2.0.2 too, but not with PHP 8.2, hence the reason why my module is installable on Drupal 10 + PHP 8.1.)
Anyway, it would help if this project can declare a compatibility with laminas/laminas-servicemanager ^4.0.
See also https://www.drupal.org/project/feeds/issues/3325568
The text was updated successfully, but these errors were encountered: