-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,21 @@ | ||
event-sourcing | ||
============== | ||
ProophEventSourcing | ||
=================== | ||
|
||
Provides basic functionality for event-sourced aggregates | ||
|
||
#Used Third-Party Libraries | ||
|
||
- ProophEventSourcing uses [ZF2 components](http://framework.zend.com/) to offer event-driven capabilities. | ||
- Uuids of the AggregateChangedEvents are generated with [rhumsaa/uuid](https://github.com/ramsey/uuid) | ||
- Assertions are performed by [beberlei/assert](https://github.com/beberlei/assert) | ||
- Immutable DateTime ValueObjects are provided by [nicolopignatelli/valueobjects](https://github.com/nicolopignatelli/valueobjects) | ||
- ArrayReader to access payload properties of Events with ease is powered by [codeliner/array-reader](https://github.com/codeliner/array-reader) | ||
|
||
#ProophEventStore Support | ||
|
||
ProophEventSourcing ships with a [ProophEventStore](https://github.com/prooph/event-store) Feature to connect the store | ||
with the bundled [EventSourcingRepository](https://github.com/prooph/event-sourcing/blob/master/src/Prooph/EventSourcing/Repository/EventSourcingRepository.php). | ||
|
||
#Quick Start | ||
|
||
If you want to see ProophEventSourcing in action you can have a look at the [Quick Start of ProophEventStore](https://github.com/prooph/event-store#quick-start) |