Skip to content

Commit

Permalink
add learn more section
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBadura committed Feb 1, 2024
1 parent 60d14c9 commit b19329e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
10 changes: 9 additions & 1 deletion docs/pages/aggregate.md
Original file line number Diff line number Diff line change
Expand Up @@ -653,4 +653,12 @@ use Patchlevel\EventSourcing\Metadata\AggregateRoot\AttributeAggregateRootRegist
use Patchlevel\EventSourcing\Metadata\AggregateRoot\AggregateRootRegistry;

$aggregateRegistry = (new AttributeEventRegistryFactory())->create($paths);
```
```

## Learn more

* [How to create own aggregate id](aggregate_id.md)
* [How to store and load aggregates](repository.md)
* [How to snapshot aggregates](snapshots.md)
* [How to create Projections](projection.md)
* [How to split streams](split_stream.md)
9 changes: 9 additions & 0 deletions docs/pages/events.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,3 +112,12 @@ use Patchlevel\EventSourcing\Metadata\Event\EventRegistry;

$eventRegistry = (new AttributeEventRegistryFactory())->create($paths);
```

## Learn more

* [How to normalize events](normalizer.md)
* [How to dispatch events](event_bus.md)
* [How to listen on events](processor.md)
* [How to store events](store.md)
* [How to split streams](split_stream.md)
* [How to upcast events](upcasting.md)

0 comments on commit b19329e

Please sign in to comment.