- CakePHP4.0 or higher
composer require kozo/mechanical
php bin/cake.php mechanical create
app/Quartz/MechanicalCron.php
// sample
<?php
namespace App\Mechanical;
use Watchmaker\Watchmaker;
class MechanicalCron {
public function handle(Watchmaker $watchmaker): Watchmaker
{
$i = $watchmaker->task('php hoge/fuga.php');
$i = $i
->month(1)
->day(5);
$watchmaker->add($i);
$j = $watchmaker->task('php hoge/hoge.php');
$j = $j
->month(2)
->day(6);
$watchmaker->add($j);
return $watchmaker;
}
}
show the difference between "crontab" and "Quartz".
php bin/cake.php mechanical show
Install the difference between "crontab" and "Quartz".
php bin/cake.php mechanical install