Download the PHP package norbybaru/easypeasy-runner without Composer
On this page you can find all versions of the php package norbybaru/easypeasy-runner. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download norbybaru/easypeasy-runner
More information about norbybaru/easypeasy-runner
Files in norbybaru/easypeasy-runner
Package easypeasy-runner
Short Description background jobs, independent of Laravel's built-in queue system
License MIT
Homepage https://github.com/norbybaru/easypeasy-runner
Informations about the package easypeasy-runner
Background Job Runner
A tailored custom system to execute PHP classes as background jobs, independent of Laravel's built-in queue system.
Feature
- Priority queue
- Retry attempt
- Delay process
- Retry failed jobs
Installation
Publish configuration
Publish migration
Run migration
Usage
Configure Whitelist class namespaces
To prevent execution of unauthorized classes, you should update config/easypeasy-runner.php
file
with allowed class namespace or fully qualified class name.
eg.
Start background process
Run the following artisan command to start processing background job
Basic
PS. Ensure to set params value in correct orders as in function definition eg.
Advanced
Configure priority job
Available options: low
, medium
, high
Configure delay (seconds) job
Override Retry configuration
Monitoring
View info logs
New file are generated daily with date format background_jobs-YYY-MM-DD
.
eg. background_jobs-2024-11-23.log
.
View Error logs
New file are generated daily with date format background_jobs_errors-YYY-MM-DD
.
eg. background_jobs_errors-2024-11-23.log
.
Cleanup Jobs table
Jobs Stats
Display Background Jobs Stats
Live update of Background Jobs Stats
Display only failed Jobs
Retry Failed Jobs
Retry all failed jobs
Retry a single failed job
All versions of easypeasy-runner with dependencies
illuminate/console Version ^10.0|^11.0
illuminate/database Version ^10.0|^11.0
illuminate/support Version ^10.0|^11.0
symfony/process Version ^6.0|^7.0