Skip to content

marko-php/marko-scheduler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

marko/scheduler

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

About

[READ-ONLY] Task scheduling for Marko Framework. Issues and PRs at https://github.com/marko-php/marko

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages