承接 phauthentic/domain-events-symfony-bundle 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

phauthentic/domain-events-symfony-bundle

Composer 安装命令:

composer require phauthentic/domain-events-symfony-bundle

包简介

Domain Events for Symfony

README 文档

README

This bundle deals with the dispatching of domain events and the implementation of the outbox pattern, which is optional.

The outbox pattern is a way to ensure reliable message publishing with a dedicated “Outbox” table within your transactional boundary. It is suited to scenarios needing atomic writes to business data and events. It is simple to implement using existing relational databases.

This library follows the KISS principle and tries to keep things as simple and easy to understand as possible. Being framework agnostic was never a design goal, nor being super generic.

Features

  • Domain events dispatching
  • (Optional) Outbox pattern implementation

Installation

composer require phauthentic/domain-events-symfony-bundle

Wire the services in your config/services.yaml:

services:
    Phauthentic\Symfony\DomainEvents\Domain\ReflectionAggregateExtractor:
    Phauthentic\Symfony\DomainEvents\Domain\AggregateExtractorInterface: '@Phauthentic\Symfony\DomainEvents\Domain\ReflectionAggregateExtractor'
    Phauthentic\Symfony\DomainEvents\Doctrine\DomainEventEmitter:
      tags:
        - { name: 'doctrine.event_listener', event: 'postPersist', priority: 1 }

Usage

Add the #[AggregateRoot] attribute to your aggregate root classes that should emit domain events. By default the AggregateRoot attribute will look for an id and domainEvents property in your aggregate root classes. You can customize this by passing the property names as arguments to the attribute.

Optional: Use the EventRecorderTrait in your aggregate root classes to record domain events if you want to stick to the defaults. The trait implements the domainEvents property and adds a method recordThat(object $event).

Minimum default example

#[AggregateRoot]
class Cart {

    use EventRecorderTrait;

    string $id;
    
    public function itemAdded(Item $item) {
        $this->items[] = $item;
        $this->recordThat(new ItemAdded($item));
    }
}

Domain Events, the Outbox Pattern and Event Sourcing

The bundle is intentionally not implementing event sourcing, because it adds another level of often not needed complexity. If you struggle to understand this design decision you are probably not a candidate for event sourcing in any case.

The Outbox Pattern

  • Ensures reliable message publishing with a dedicated “Outbox” table within your transactional boundary.
  • Suited to scenarios needing atomic writes to business data and events.
  • Simple to implement using existing relational databases.

Event Store / Event Sourcing

  • Stores every event as the system’s ultimate source of truth.
  • Suited to event-sourced architectures, allowing system state to be rebuilt from event history.
  • Provides full auditability and traceability but is more complex.

Event Sourcing Alternatives

License

This bundle is under the MIT license.

Copyright Florian Krämer

phauthentic/domain-events-symfony-bundle 适用场景与选型建议

phauthentic/domain-events-symfony-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 109 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 12 月 29 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 phauthentic/domain-events-symfony-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 phauthentic/domain-events-symfony-bundle 我们能提供哪些服务?
定制开发 / 二次开发

基于 phauthentic/domain-events-symfony-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-12-29