From 0e0a1c4e4c54506c94a3a70d780293e4111e63f8 Mon Sep 17 00:00:00 2001 From: Nicolas Widart Date: Tue, 20 Jan 2015 21:11:39 +0100 Subject: [PATCH] Add info about the drivers in the event store --- readme.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/readme.md b/readme.md index d9bc6c0..4172e4f 100644 --- a/readme.md +++ b/readme.md @@ -97,6 +97,16 @@ To create the event store you can call the following command: ``` php artisan broadway:event-store:migrate table_name ``` +In the configuration file, you can choose which driver to use as an event store. + +``` php +'event-store' => [ + 'table' => 'event_store', + 'driver' => 'dbal' +], +``` + + ### Read Model