logadapp / queue
There is no license information available for the latest version (dev-main) of this package.
Simple implementation/clone of Laravel Jobs
dev-main
2025-06-06 08:52 UTC
Requires
- symfony/console: ^7.2
Requires (Dev)
- phpunit/phpunit: ^11.5
This package is auto-updated.
Last update: 2025-06-06 11:00:41 UTC
README
A lightweight (low-budget), queue system for PHP applications.
Why??
- Because I can.
- I was working on some vanilla php projects and sometimes needed to create cron jobs for each operation I wanted to run in the background. But I'd have to create a dedicated file to run the job, add a new entry in crontab.....
Checkout other projects under logadapp 😊
Features
Installation (Coming soon)
composer require
Basic Usage
Creating a Job
Create a job by extending the base Job
class:
<?php namespace App\Jobs; use LogadApp\Queue\Job; class SendEmailJob extends Job { public function __construct( private readonly string $recipient, private readonly string $subject, private readonly string $content ) {} protected function handle(): void { // Email sending logic here } }
Dispatching Jobs
<?php use App\Jobs\SendEmailJob; // Dispatch a job to the default queue SendEmailJob::dispatch( 'user@example.com', 'Welcome!', 'Thanks for signing up.' )); // extra parenthesis because 8.5 is not out yet (new SendEmailJob( recipient: "explicit-{$i}@test.com", subject: "Explicit {$i}", content: "HII" ))->dispatchSelf();
Processing Jobs
Run the worker command to process jobs:
php bin/console queue:work
Configuration
Coming Soon
- Database storage support
- Failed job handling