Instead of providing a module, a bundle, a bridge or similar framework integration prooph/event-store ships with interop factories
.
The concept behind these factories (see src/Container
folder) is simple but powerful. It allows us to provide you with bootstrapping logic for the event store and related components
without the need to rely on a specific framework. However, the factories have three requirements.
config
in the container.Note: Don't worry, if your environment doesn't provide these requirements, you can always bootstrap the components by hand. Just look at the factories for inspiration in this case.
Sample configuration:
[
'prooph' => [
'memcached_snapshot_store' => [
'default' => [
'connection' => 'my_memcached_connection', //<-- service name of your memcached connection
'serializer' => 'My\Serializer' //<-- optional, service name of a custom serializer
],
],
],
]