Skip to content
This repository has been archived by the owner on Jul 20, 2020. It is now read-only.

0.8.0

Compare
Choose a tag to compare
@bramdevries bramdevries released this 18 Jan 18:20
· 43 commits to develop since this release
5121a18

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' => [],
    ],