This package extends zerodahero/laravel-workflow by adding option to store workflow coniguration in database. Laravel workflow only support loading configuration form Laravel configuration. This package provides user to change workflow configuration without helping from developers.
You can install the package via composer:
composer require soap/laravel-workflow-storage
You can publish and run the migrations with:
php artisan vendor:publish --tag="laravel-workflow-storage-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="laravel-workflow-storage-config"
This is the contents of the published config file:
return [
];
To use this package to store workflow configuration you need to register workflow binding in your application service provider. You have to instruct Laravel to use new 'workflow' binding instead of the one provided by zerodahero/laravel-workflow.
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.