akki-team/sylius-messenger-plugin

1.0.0 2024-09-04 14:14 UTC

This package is auto-updated.

Last update: 2025-03-09 14:26:52 UTC


README

Overview

This plugin works with symfony/messenger and Sylius.

With two new stamps (LocaleStamp and ChannelStamp) you can set the locale and channel context directly in your message. The context will be automatically set when the message will be consumed.

Installation

  1. Install the plugin to your project with the following command:
$ composer require akki-team/sylius-messenger-plugin
  1. After the installation, check that the plugin is correctly declared in your project in the file config/bundles.php.
 return [
    ...
    Akki\SyliusMessengerPlugin\AkkiSyliusMessengerPlugin::class => ['all' => true],
];

Example

use Akki\SyliusMessengerPlugin\Stamp\ChannelStamp;
use Akki\SyliusMessengerPlugin\Stamp\LocaleStamp;

$envelope = new Envelope(new MyMessage(), [
    new LocaleStamp('en_US'),
    new ChannelStamp('web'),
]);

$this->bus->dispatch($envelope);