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(5mo ago)00MITPHPPHP ^8.2CI failing

Since Jan 31Pushed 5mo 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 today

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

33

—

LowBetter than 72% of packages

Maintenance73

Regular maintenance activity

Popularity0

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity47

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

155d 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/core

Shopware platform is the core for all Shopware ecommerce products.

585.6M577](/packages/shopware-core)[shopware/platform

The Shopware e-commerce core

3.4k1.5M3](/packages/shopware-platform)[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.5k5.9M738](/packages/sylius-sylius)[sulu/sulu

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

1.3k1.4M204](/packages/sulu-sulu)[pimcore/pimcore

Content &amp; Product Management Framework (CMS/PIM/E-Commerce)

3.8k3.8M508](/packages/pimcore-pimcore)[shopware/storefront

Storefront for Shopware

684.6M237](/packages/shopware-storefront)

PHPackages © 2026

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