PHPackages                             syeedalireza/symfony-eventsourcing-toolkit - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. syeedalireza/symfony-eventsourcing-toolkit

ActiveSymfony-bundle[Framework](/categories/framework)

syeedalireza/symfony-eventsourcing-toolkit
==========================================

Enterprise-grade Event Sourcing and CQRS implementation for Symfony. Build scalable, auditable applications with complete event history, temporal queries, and event replay capabilities.

v1.0.0(3mo ago)00MITPHPPHP ^8.2CI failing

Since Jan 31Pushed 3mo agoCompare

[ Source](https://github.com/syeedalireza/symfony-eventsourcing-toolkit)[ Packagist](https://packagist.org/packages/syeedalireza/symfony-eventsourcing-toolkit)[ RSS](/packages/syeedalireza-symfony-eventsourcing-toolkit/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (6)Versions (2)Used By (0)

Symfony Event Sourcing Toolkit
==============================

[](#symfony-event-sourcing-toolkit)

Event Sourcing and CQRS implementation for Symfony with PostgreSQL event store, projections, and snapshots.

Features
--------

[](#features)

- PostgreSQL-optimized Event Store
- CQRS Command/Query separation
- Event versioning and upcasting
- Snapshot mechanism for performance
- Projection engine with rebuild
- Event replay functionality
- Symfony Messenger integration

Installation
------------

[](#installation)

```
composer require syeedalireza/symfony-eventsourcing-toolkit
```

Quick Start
-----------

[](#quick-start)

```
// Define your aggregate
class BankAccount extends AggregateRoot
{
    private Money $balance;

    public function deposit(Money $amount): void
    {
        $this->recordThat(new MoneyDeposited($amount));
    }

    protected function applyMoneyDeposited(MoneyDeposited $event): void
    {
        $this->balance = $this->balance->add($event->amount);
    }
}

// Use the event store
$eventStore->save($account);
$history = $eventStore->load($accountId);
```

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance81

Actively maintained with recent releases

Popularity0

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity46

Maturing project, gaining track record

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

102d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/05de5f56c8b265c6720d5a4593d499a06c5a32b7ed2b7c36e0ac73778f09a381?d=identicon)[syeedalireza](/maintainers/syeedalireza)

---

Tags

symfonyDomain Driven Designdddevent sourcingevent storecqrssnapshotsprojectionsevent-replaytemporal-queries

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/syeedalireza-symfony-eventsourcing-toolkit/health.svg)

```
[![Health](https://phpackages.com/badges/syeedalireza-symfony-eventsourcing-toolkit/health.svg)](https://phpackages.com/packages/syeedalireza-symfony-eventsourcing-toolkit)
```

###  Alternatives

[shopware/platform

The Shopware e-commerce core

3.3k1.5M3](/packages/shopware-platform)[broadway/broadway

Infrastructure and testing helpers for creating CQRS and event sourced applications.

1.5k2.0M53](/packages/broadway-broadway)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.3M152](/packages/sulu-sulu)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

595.2M386](/packages/shopware-core)[broadway/broadway-bundle

Symfony bundle for broadway/broadway.

68853.8k7](/packages/broadway-broadway-bundle)[nwidart/laravel-broadway

A Laravel adapter for the Broadway ES/CQRS package.

12315.0k](/packages/nwidart-laravel-broadway)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
