https://github.com/phauthentic/event-sourcing
A framework-agnostic event sourcing library aiming for simplicity.
https://github.com/phauthentic/event-sourcing
cqrs ddd event-sourcing php php-library php8 solid solid-principles
Last synced: 26 days ago
JSON representation
A framework-agnostic event sourcing library aiming for simplicity.
- Host: GitHub
- URL: https://github.com/phauthentic/event-sourcing
- Owner: Phauthentic
- License: mit
- Created: 2023-01-11T22:00:45.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-04-23T23:38:46.000Z (about 2 years ago)
- Last Synced: 2024-05-01T23:04:07.936Z (about 2 years ago)
- Topics: cqrs, ddd, event-sourcing, php, php-library, php8, solid, solid-principles
- Language: PHP
- Homepage:
- Size: 194 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Phauthentic Event Sourcing Library
A framework-agnostic event sourcing system.
The library tries to be as unopinionated as possible, it provides the basic building blocks to implement event sourcing in your application. The library will allow you to keep 3rd party dependencies to a minimum and will not force you to use a specific framework or library. Your aggregates can be free of third party dependencies if you want to go for that style.
It features different ways of extracting information from your aggregates, pick your flavor: Via Attributes (recommended), Interfaces or Reflection. Using a reflection based extractor will allow you to keep your aggregates free of any dependency to this library.
## Installation
```sh
composer require phauthentic/event-sourcing
```
## Documentation
* [What is Event Sourcing?](docs/What-is-Event-Sourcing)
* [The Architecture of this Library](docs/Architecture.md)
* [Make your Aggregates Using Event Sourcing](docs/Make-your-Aggregate-using-Event-Sourcing.md)
* [Example](docs/Example.md)
* [Running Tests](docs/Running-Tests.md)
* [Other Event Sourcing Libraries](docs/Other-Event-Sourcing-Libraries.md)
## License
Copyright Florian Krämer
Licensed under the [MIT license](LICENSE).