tobimori / kirby-queues
A comprehensive background job queue system for Kirby CMS with scheduled task support and panel monitoring interface
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 0
Open Issues: 0
Type:kirby-plugin
Requires
- php: ^8.3
- getkirby/composer-installer: ^1.2
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.0
- getkirby/cli: ^1.0
- getkirby/cms: ^5.0
- pestphp/pest: ^2.0
- phpstan/phpstan: ^1.0
This package is auto-updated.
Last update: 2025-06-12 17:44:49 UTC
README
Queues is a simple but sophisticated queueing API for Kirby CMS inspired by Laravel's queueing system.
Its main goal is to provide plugin developers with a common way to implement background tasks without each plugin having to implement its own queueing system (of course you can also create background tasks unique to your Kirby site); e.g. Kirby SEO uses these for page audits, broken links checking; DreamForm allows you to run "actions" as background tasks to postpone long-running processes such as PDF generation or email sending.
Its storage is powered by the Kirby Caching API, which allows us to easily support a variety of providers, such as File, Redis, and more out of the box. Theoretically, this also supports multiple workers running in parallel on multiple machines, albeit the plugin has not been tested with such a setup.
Queues also supports scheduled jobs in the same worker process.
Installation
Kirby Queues requires Composer, since it requires the use of the Kirby CLI. If you use Queues in your plugin, keep in mind that Queues also has to be installed separately by the user.
composer require tobimori/kirby-queues getkirby/cli
Support
This plugin is provided free of charge & published under the permissive MIT License. If you use it in a commercial project or build your own commercial plugin using Queues, please consider to sponsor me on GitHub or purchase any of my commercial plugins to support further development and continued maintenance.
License
MIT License Copyright © 2025 Tobias Möritz