imnotjames/cronic

A Cron annotation helper.

Installs: 86

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

pkg:composer/imnotjames/cronic

0.0.2 2017-04-03 19:08 UTC

This package is not auto-updated.

Last update: 2025-09-28 01:49:28 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() {
    }
}