neos/event-sourcing
composer require neos/event-sourcing
Lean and opinionated way to integrate Event Sourcing and CQRS pattern in your Flow framework package
dev-feature/projection-snapshots
- Requires
- php: >=7.2
- neos/flow: ^5.3 || ^6.0
- flowpack/jobqueue-common: ^3.0 || dev-master
- symfony/serializer: ^5.1
- symfony/property-access: ^5.1
- ramsey/uuid: ^3.9
- Requires (dev)
- roave/security-advisories: dev-master
- dg/bypass-finals: ^1.2
Readme excerpt
Event Sourcing and CQRS for Flow FrameworkLibrary providing interfaces and implementations for event-sourced applications.
Getting startedInstall this package via composer:
composer require neos/event-sourcing Setting up an Event StoreSince there could be multiple Event Stores simultaneously in one application, this package no longer comes with a pre-configured "default" store. It is just a matter of a couple of lines of YAML to configure a custom store:
Configuration/Settings.yaml:
Neos: EventSourcing: EventStore: stores: 'Some.Package:EventStore': storage: …Read more
The same vendor provides 92 package(s).