From 2dd925721ca06974407e93b441d9bfa1b2f47b09 Mon Sep 17 00:00:00 2001 From: David Badura Date: Thu, 14 Dec 2023 14:00:47 +0100 Subject: [PATCH] improve docs --- docs/pages/index.md | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/docs/pages/index.md b/docs/pages/index.md index de9670efc..f377acc5a 100644 --- a/docs/pages/index.md +++ b/docs/pages/index.md @@ -7,13 +7,13 @@ A lightweight but also all-inclusive event sourcing library with a focus on deve * Everything is included in the package for event sourcing * Based on [doctrine dbal](https://github.com/doctrine/dbal) and their ecosystem * Developer experience oriented and fully typed -* [Snapshots](snapshots.md) system to quickly rebuild the aggregates -* Allow to [Split-Stream](split_stream.md) for big aggregates -* [Pipeline](pipeline.md) to export,import and migrate events -* [Projectionist](projection.md) to manage versioned projections -* [Upcast](upcasting.md) old events -* [Scheme management](store.md) and [doctrine migration](migration.md) support -* Dev [tools](watch_server.md) such as a realtime event watcher +* Automatic [snapshot](snapshots.md)-system to boost your performance +* [Split](split_stream.md) big aggregates into multiple streams +* Build-in [pipeline](pipeline.md) to export, import and migrate event streams +* Versioned and managed lifecycle of [projections](projection.md) +* Smooth [upcasting](upcasting.md) of old events +* Simple setup with [scheme management](store.md) and [doctrine migration](migration.md) +* Dev [tools](watch_server.md) like realtime event watcher * Built in [cli commands](cli.md) with [symfony](https://symfony.com/) * and much more... @@ -27,3 +27,7 @@ composer require patchlevel/event-sourcing * [Symfony](https://github.com/patchlevel/event-sourcing-bundle) * [Psalm](https://github.com/patchlevel/event-sourcing-psalm-plugin) + +!!! tip + + Start with the [quickstart](./getting_started.md) to get a feeling for the library.