marko/scheduler

Task scheduling for Marko Framework

Maintainers

Package info

github.com/marko-php/marko-scheduler

Type:marko-module

pkg:composer/marko/scheduler

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

0.0.1 2026-03-25 17:53 UTC

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