Download the PHP package nwidart/laravel-broadway without Composer
On this page you can find all versions of the php package nwidart/laravel-broadway. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download nwidart/laravel-broadway
More information about nwidart/laravel-broadway
Files in nwidart/laravel-broadway
Package laravel-broadway
Short Description A Laravel adapter for the Broadway ES/CQRS package.
License MIT
Informations about the package laravel-broadway
Laravel Broadway
Laravel Broadway is an adapter for the Broadway package.
It binds all needed interfaces for Broadway.
For reference, I've built a demo laravel application that uses this package and some event sourcing techniques.
Laravel 5 compatible package
Laravel version | Package version |
---|---|
~4.2 | ~0.2 |
~5.0 | ~0.3 |
~5.1+ | ~2.0 |
Installation
Install via composer
Service Providers
Laravel 5.5 (Auto discovery)
If you are using Laravel 5.5, this package provides auto discovery, meaning you can start coding – the Global Service Provider is already added. In case you need just some Service Providers, please add the following section to your applications composer.json:
Laravel 5.4
To finish the installation you need to add the service providers.
You have a choice here, you can either use the main Service Provider which will load the following:
- CommandBus
- EventBus
- Serializers
- EventStorage
- ReadModel
- MetadataEnricher
- Support (UuidGenerators,...)
Or choose to use only the Service providers you need. Don't know what you need ? Use the Global Service Provider provided.
Global Service Provider
Separate Service Providers
- CommandBus
-
EventBus
-
Serializers
-
EventStorage
-
ReadModel
-
MetadataEnricher
- Support
(Optional) Publish configuration file and migration
This will publish a config/broadway.php
file and a database/migrations/create_event_store_table.php
file.
(Optional) Run migration
Last step, run the migration that was published in the last step to create the event_store table.
If you haven't published the vendor files, you can use the command explained below:
Configuration
Event Store
To create the event store you can call the following command:
In the configuration file, you can choose which driver to use as an event store and which connection to use.
Once done, you can bind your EventStoreRepositories in a Service Provider like so:
For an in memory Event Store, all you need to do is change the driver in the configuration file and probably add a new event store repository implementation with an adequate name.
Read Model
To set a read model in your application you first need to set the wanted read model in the package configuration.
Once that's done you can bind your ReadModelRepositories in a Service Provider like so:
For an In Memory read model as an example:
See the demo laravel application and specifically the Service Provider for a working example.
Registering subscribers
Command handlers
To let broadway know which handlers are available you need to bind in the Laravel IoC container a key named broadway.command-subscribers
as a singleton.
It's important to know Command Handlers classes in broadway need to get a Event Store repository injected.
Now just pass either an array of command handlers to the laravelbroadway.command.registry
key out the IoC Container or just one class, like so:
Event subscribers
This is pretty much the same as the command handlers, except that the event subscriber (or listener) needs an Read Model repository.
Example:
Metadata Enricher
Broadways event store table comes with a field called "metadata". Here we can store all kind of stuff which should be saved together with the particular event, but which is does not fit to the domain aka the payload.
For example you like to store the ID of the current logged-in user or the IP or ...
Broadway uses Decorators to manipulate the event stream. A decorator consumes one or more Enrichers, which provide the actual data (user ID, IP). Right before saving the event to the stream, the decorator will loop through the registered enrichers and apply the data.
The following example assumes you added the global ServiceProvider of this package or at least the Nwidart\LaravelBroadway\Broadway\MetadataEnricherServiceProvider
.
First we create the enricher. In this example lets assume we are interested in the logged-in user. The enricher will add the user ID to the metadata and returns the modified metadata object. However, in some cases – like in Unit Tests - there is no logged-in user available. To tackle this, the user ID can injected via constructor.
Second you need to register the Enricher to the decorator and pass the decorator to your repository
To retrieve the metadata you need to pass the DomainMessage as the 2nd parameter to an apply*-method in your projector.
All the rest are conventions from the Broadway package.
Changelog
License (MIT)
All versions of laravel-broadway with dependencies
doctrine/dbal Version ~2.5
broadway/broadway Version ~1.0.0
broadway/event-store-dbal Version ^0.1.2
illuminate/support Version 5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*