This package provides a WebSocket transport for the Symfony Messenger component, enabling real-time communication between Symfony Messenger and external services via WebSocket connections.
Install the package via Composer:
composer require gri3li/symfony-messenger-websocket-transport
Since all messages will be serialized and deserialized as instances of StdClass, you will most likely need to provide custom implementations of the interfaces:
SendersLocatorInterface
: Defines which sender will be used for dispatching a message.HandlersLocatorInterface
: Defines which handler will process the message.