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
When requiring symfony/webhook from a new Symfony project, 2 services depends on non-installed dependencies:
The service "webhook.transport" has a dependency on a non-existent service "http_client".
The service "webhook.body_configurator.json" has a dependency on a non-existent service "serializer".
How to reproduce
Create a projet from symfony/skeleton
composer require symfony/webhook
Possible Solution
Should we throw an exception like throw new LogicException('The webhook component cannot be enabled as these components are not installed. Try running "composer require symfony/http-client symfony/serializer".'); ?