This repository has been archived by the owner on Jul 20, 2020. It is now read-only.
0.8.0
Added
- Able to easily configure sagas through
broadway.php
Upgrade notes
If you're upgrading, make sure to add the following to your broadway.php
file:
/*
|--------------------------------------------------------------------------
| Saga configuration
|--------------------------------------------------------------------------
| You can choose a driver, possible options are:
|
| mongodb, inmemory
|
*/
'saga' => [
'driver' => 'inmemory',
'mongodb' => [
'collection' => 'sagas',
],
'sagas' => [],
],