Download the PHP package jeffersongoncalves/laravel-queue-management without Composer
On this page you can find all versions of the php package jeffersongoncalves/laravel-queue-management. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download jeffersongoncalves/laravel-queue-management
More information about jeffersongoncalves/laravel-queue-management
Files in jeffersongoncalves/laravel-queue-management
Package laravel-queue-management
Short Description Manage Laravel's database queue tables (jobs, failed_jobs, job_batches) through models and a service layer.
License MIT
Homepage https://github.com/jeffersongoncalves/laravel-queue-management
Informations about the package laravel-queue-management
Laravel Queue Management
A headless toolkit for managing Laravel's database-driver queue tables (jobs, failed_jobs, job_batches). It provides Eloquent models for each table plus a small service layer (and facade) to retry, forget and flush failed jobs and delete pending jobs.
It contains no UI framework of its own. UI plugins (such as a Filament plugin) can depend on this package for the underlying models and operations.
Requirements
- PHP 8.2+
- Laravel 11, 12, or 13
Installation
The package uses Laravel's auto-discovery, so the service provider and the QueueManagement facade are registered automatically.
Publish Configuration (optional)
This package reads from Laravel's existing queue tables. It does not ship migrations — make sure your application has run Laravel's built-in queue migrations (jobs, failed_jobs, job_batches).
Configuration
The configuration file (config/queue-management.php) lets you map the queue table names if your application uses custom ones:
Usage
Models
Service layer
Resolve the QueueManager from the container:
Facade
Testing
Changelog
Please see CHANGELOG for more information on what has changed recently.
Credits
- Jefferson Gonçalves
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-queue-management with dependencies
illuminate/console Version ^11.0|^12.0|^13.0
illuminate/contracts Version ^11.0|^12.0|^13.0
illuminate/database Version ^11.0|^12.0|^13.0
illuminate/support Version ^11.0|^12.0|^13.0
spatie/laravel-package-tools Version ^1.14.0