sylletka / yii2-cronjob
This module provides pages and commands to manage and run cron jobs
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 2
Open Issues: 0
Type:yii2-module
Requires
- nex/yii2-chosen: *
- yiisoft/yii2: ~2.0.0
This package is not auto-updated.
Last update: 2025-01-22 21:39:54 UTC
README
This module provides pages and commands to manage and run cron jobs
Install
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist sylletka/yii2-cronjob "*"
or add
"sylletka/yii2-cronjob": "*"
to the require section of your composer.json
file.
Subsequently, run
./yii migrate/up --migrationPath=@vendor/sylletka/yii2-cronjob/migrations
in order to create the required tables.
Then, enable the module in config file:
<?php 'modules' => [ ... 'log' => [ 'class' => 'sylletka\cronjob\Module', ], ... ],