inwebo / doctrine-event-sourcing
Simple Event sourcing pattern implementation with DoctrineListener
dev-master
2025-04-03 08:25 UTC
Requires
- php: ^8.3
- doctrine/orm: ^3.3
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.72
- phpbench/phpbench: ^1.4
- phpmd/phpmd: ^2.15
- phpstan/phpstan: ^2.1
- phpunit/phpunit: ^12.0
- symfony/clock: ^7.2
- symfony/event-dispatcher: ^7.2
- symfony/test-pack: ^1.0
This package is auto-updated.
Last update: 2025-04-03 08:26:11 UTC
README
Simple Event sourcing pattern implementation with DoctrineListener
Installation
composer req inwebo/doctrine-event-sourcing
Tests
composer phpunit
PhpStan
composer phpstan
How can I help you ?
If you want to save a state of an entity easily, you want to extract all changes of an entity over the time or see an exact version of an entity with ease, this library can help you.
Entity cycle of life
Each time prePersist or preUpdate doctrine's event is invoked the entity's state is saved.
Example
We want to save the state of a product over the time. A customer told us that he paid 35€ a product during Xmas sales. Is he wrong or not ?
You can check an implementation with a Product entity and its state ProductState