https://github.com/prooph/event-sourcing
Provides basic functionality for event sourced aggregates.
https://github.com/prooph/event-sourcing
cqrs ddd event-sourcing event-store php prooph
Last synced: about 2 months ago
JSON representation
Provides basic functionality for event sourced aggregates.
- Host: GitHub
- URL: https://github.com/prooph/event-sourcing
- Owner: prooph
- License: bsd-3-clause
- Created: 2014-06-06T20:44:06.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2021-03-22T22:39:31.000Z (about 4 years ago)
- Last Synced: 2025-04-10T18:01:11.490Z (about 2 months ago)
- Topics: cqrs, ddd, event-sourcing, event-store, php, prooph
- Language: PHP
- Homepage: http://getprooph.org
- Size: 433 KB
- Stars: 265
- Watchers: 18
- Forks: 41
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
ProophEventSourcing
===================Simple and lightweight event sourcing library with out of the box support for [ProophEventStore](https://github.com/prooph/event-store)
[](https://travis-ci.org/prooph/event-sourcing)
[](https://coveralls.io/r/prooph/event-sourcing?branch=master)
[](https://gitter.im/prooph/improoph)## Important
This library will receive support until December 31, 2019 and will then be deprecated.
For further information see the official announcement here: [https://www.sasaprolic.com/2018/08/the-future-of-prooph-components.html](https://www.sasaprolic.com/2018/08/the-future-of-prooph-components.html)
# Installation
You can install ProophEventSourcing via composer by adding `"prooph/event-sourcing": "^5.0"` as requirement to your composer.json.
# Usage
Our [quickstart](https://github.com/prooph/event-sourcing/blob/master/examples/quickstart.php) should give you a starting point.
It's a very small domain but shows you the useage of ProophEventSourcing and the integration with ProophEventStore.# ProophEventStore Integration
ProophEventSourcing ships with a [ProophEventStore](https://github.com/prooph/event-store) AggregateTranslator to connect the store
with the bundled [AggregateRoot](https://github.com/prooph/event-sourcing/blob/master/src/Prooph/EventSourcing/AggregateRoot.php).# Support
- Ask questions on Stack Overflow tagged with [#prooph](https://stackoverflow.com/questions/tagged/prooph).
- File issues at [https://github.com/prooph/event-sourcing/issues](https://github.com/prooph/event-sourcing/issues).
- Say hello in the [prooph gitter](https://gitter.im/prooph/improoph) chat.# Used Third-Party Libraries
- Uuids of the AggregateChangedEvents are generated with [ramsey/uuid](https://github.com/ramsey/uuid)
- Assertions are performed by [beberlei/assert](https://github.com/beberlei/assert)