Download the PHP package safemood/laravel-workflow without Composer
On this page you can find all versions of the php package safemood/laravel-workflow. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download safemood/laravel-workflow
More information about safemood/laravel-workflow
Files in safemood/laravel-workflow
Package laravel-workflow
Short Description Laravel package that simplifies workflows with clear actions definition and event tracking.
License MIT
Homepage https://github.com/safemood/laravel-workflow
Informations about the package laravel-workflow
Laravel Workflow
Laravel Workflow combines feature details into one class, allowing for action definition and event tracking, simplifying understanding and revealing hidden logic.
- Laravel Workflow
- Installation
- Create a Workflow
- Create Actions
- Basic Example
- Define Workflow Logic
- Execute Workflow
- Conditional Action Execution
- Using DTO for Context
Installation
You can install the package via Composer:
Create a Workflow
You can create a workflow using the artisan command:
Create Actions
You can create an action using the artisan command:
Basic Example
Once you have set up your workflows and actions, you can define your business logic and orchestrate them within your Laravel application.
Define Workflow Logic
In your PaymentWorkflow
class, you define the sequence of actions and conditions that make up your workflow:
Execute Workflow
Conditional Action Execution
You can use the when method to conditionally execute an action.
Using DTO for Context
DTOInterface and BaseDTO allow you to handle context type-safely by using DTOs instead of raw arrays. Here's an example of defining a CartDTO class:
All versions of laravel-workflow with dependencies
spatie/laravel-package-tools Version ^1.16
illuminate/contracts Version ^10.0||^11.0