定制 gember/message-bus-symfony 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

gember/message-bus-symfony

最新稳定版本:0.10.0

Composer 安装命令:

composer require gember/message-bus-symfony

包简介

Gember Event Sourcing Message Bus adapter based on symfony/messenger

README 文档

README

Build Status Coverage Status Quality Score Software License PHP Version

Gember Event Sourcing Message Bus adapter based on symfony/messenger.

All external dependencies in Gember Event Sourcing are organized into separate packages, making it easy to swap out a vendor adapter for another.

Installation

Install with Composer:

composer gember/message-bus-symfony

Configuration

Bind this adapter to the EventBus interface in your service definitions.

Examples

Vanilla PHP

use Gember\MessageBusSymfony\SymfonyEventBus;
use Symfony\Component\Messenger\Handler\HandlersLocator;
use Symfony\Component\Messenger\MessageBus;
use Symfony\Component\Messenger\Middleware\HandleMessageMiddleware;

$finder = new SymfonyEventBus(
    new MessageBus([ // An EventBus configuration of your choice
        new HandleMessageMiddleware(new HandlersLocator([
            SomeEvent::class => [SomeEventSubscriber::class],
            // ...
        ])),     
    ]), 
);

Symfony

It is recommended to use the Symfony bundle to configure Gember Event Sourcing. With this bundle, the adapter is automatically set as the default for Event Bus.

If you're not using the bundle, you can bind it directly to the EventBus interface.

Gember\DependencyContracts\Util\Messaging\MessageBus\EventBus:
  class: Gember\MessageBusSymfony\SymfonyEventBus
  arguments:
    - '@event.bus' # or any other defined Symfony event bus

统计信息

  • 总下载量: 848
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 1
  • 依赖项目数: 2
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-10-07