- Issue created by @kensae
- ๐ง๐ชBelgium dieterholvoet Brussels
Thanks for your contribution, but thereโs no need to add a composer.json file if you donโt have any dependencies that arenโt Drupal modules. The Drupal packages automatically adds a composer.json file. I prefer not to if itโs not necessary, otherwise you have to update 2 files when updating the dependencies.
- ๐ง๐ชBelgium kensae
I was not able to update to beta4 in Drupal 11 because of the webform_options_limit dependency in info.yml
When I try to update I get the following error:I have webform 6.3-beta installed with it's webform_options_limit submodule.
I thought adding a composer.json would solve this issue.When I pull this issue branch with the composer.json included, I don't get this composer errors
- ๐ง๐ชBelgium dieterholvoet Brussels
It seems like your composer is ignoring the 6.3-beta version of the webform_options_limit (sub)module. What's the
minimum-stability
in your composer.json? Can you try changing it tobeta
? If that doesn't work, can you try explicitly requiring the beta version of this module by runningcomposer require drupal/webform_options_limit:^6.3@beta
?