imnotjames/cronic

A Cron annotation helper.

Maintainers

Package info

github.com/imnotjames/cronic

pkg:composer/imnotjames/cronic

Statistics

Installs: 86

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

0.0.2 2017-04-03 19:08 UTC

This package is not auto-updated.

Last update: 2026-03-15 04:02:05 UTC


README

A cron job handler using Annotations for configuration.

How it Works

Magic. Annotate your class with @cron and a cron expression, and set up the cronic command in your crontab.

class Example {

    /**
     * @cron * * * * *
     */
    function exampleMethod() {
    }
}