A task scheduler for CodeIgniter 4.
Install via Composer:
composer require codeigniter4/tasks
Migrate the database:
php spark migrate --all
Publish the config file:
php spark tasks:publish
Define your tasks in the init()
method:
// app/Config/Tasks.php
<?php
namespace Config;
use CodeIgniter\Tasks\Config\Tasks as BaseTasks;
use CodeIgniter\Tasks\Scheduler;
class Tasks extends BaseTasks
{
/**
* Register any tasks within this method for the application.
*
* @param Scheduler $schedule
*/
public function init(Scheduler $schedule)
{
$schedule->command('demo:refresh --all')->mondays('11:00 pm');
}
}
Read the full documentation: https://tasks.codeigniter.com
We accept and encourage contributions from the community in any shape. It doesn't matter whether you can code, write documentation, or help find bugs, all contributions are welcome. See the CONTRIBUTING.md file for details.