marko / scheduler
Task scheduling for Marko Framework
0.0.1
2026-03-25 17:53 UTC
Requires
- php: ^8.5
- marko/cli: 0.0.1
- marko/core: 0.0.1
Requires (Dev)
- pestphp/pest: ^4.0
This package is auto-updated.
Last update: 2026-03-25 21:07:36 UTC
README
Fluent task scheduler with cron expression support — define recurring tasks in PHP and run them with a single cron entry.
Installation
composer require marko/scheduler
Quick Example
use Marko\Scheduler\Schedule; return [ 'boot' => function (Schedule $schedule): void { $schedule->call(function () { // Clean up temp files... })->daily()->description('Clean temp files'); }, ];
Documentation
Full usage, API reference, and examples: marko/scheduler