gri3li/symfony-messenger-websocket-transport

WebSocket transport for Symfony Messenger

v1.0.0-rc 2024-09-29 16:00 UTC

This package is auto-updated.

Last update: 2025-03-29 01:09:15 UTC


README

This package provides a WebSocket transport for the Symfony Messenger component, enabling real-time communication between Symfony Messenger and external services via WebSocket connections.

Installation

Install the package via Composer:

composer require gri3li/symfony-messenger-websocket-transport

Usage

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.