broadway / snapshotting
POC for snapshotting aggregates in broadway/broadway
Installs: 61 928
Dependents: 3
Suggesters: 0
Security: 0
Stars: 6
Watchers: 6
Forks: 9
Open Issues: 0
Requires
- php: >=7.2
- broadway/broadway: ^2.3.1
Requires (Dev)
- broadway/coding-standard: ^1.0
- phpstan/phpstan: @stable
- phpunit/phpunit: ^8.0
This package is auto-updated.
Last update: 2024-11-03 09:01:35 UTC
README
Proof-of-concept component providing snapshotting functionality to broadway/broadway.
Installation
$ composer require broadway/snapshotting
Documentation
This project demonstrates taking and using snapshots of an aggregate root in the EventSourcingRepository.
Snaphots can be triggered using different strategies like once every number of events or
after an amount of time has passed. The EventCountTrigger
implements the former strategy.
Getting started
This repository is just a library. It lacks (for now) implementations of the SnapshotRepository
.
For example if you want store your events and snapshots in a database using doctrine/dbal
you will have to:
- create a
DBALSnapshotRepository
implementing theSnapshotRepository
to store and fetch snapshots. You wil have to figure out how to serialize your aggregate root.
License
This project is licensed under the MIT License - see the LICENSE file for details