bwrice / laravel-job-chain-groups
Chain groups of jobs that can be dispatched asynchronously before the next job in the chain is queued
Requires
- php: ^7.2
- illuminate/support: ^6.0|^7.0
Requires (Dev)
- orchestra/testbench: ^4.0
- phpunit/phpunit: ^8.5
This package is auto-updated.
Last update: 2025-06-29 01:58:49 UTC
README
This package is still in development and not recommended for production use!
Dispatch a chain of jobs after a group of asynchronous jobs
Imagine you have monthly subscriptions and every month you need to process those subscriptions and immediately after processing them, you want to generate a subscriptions report. You create a ProcessSubscription job and a GenerateSubscriptionReport job, but the only way to guarantee the GenerateSubscriptionReport job runs after all the ProcessSubscription jobs are finished is to chain all of the ProcessSubscription jobs concurrently and then chain the GenerateSubscriptionReport job on the end.
Installation
You can install the package via composer:
composer require bwrice/laravel-job-chain-groups
Usage
// Usage description here
Testing
composer test
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email bwrice83@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
Laravel Package Boilerplate
This package was generated using the Laravel Package Boilerplate.