文件名称:laravel-short-schedule:安排工匠命令以每分钟的频率运行
文件大小:14KB
文件格式:ZIP
更新时间:2024-02-23 19:34:17
php laravel schedule sub-minute LaravelPHP
安排工匠命令以每分钟的频率运行 允许您调度Artisan命令,使其每分钟运行一次。 如果您需要执行更高频率的操作(例如每秒执行一次),而不是使用正确的程序包。 安装了laravel-short-schedule后,您可以执行以下操作: // in app\Console\Kernel.php protected function shortSchedule (\ Spatie \ ShortSchedule \ ShortSchedule $ shortSchedule ) { // this command will run every second $ shortSchedule -> command ( 'artisan-command' )-> everySecond (); // this command will run every 30 seconds $ shortSchedule -> command ( 'another-artisan-command' )-> everySeconds ( 30 );
【文件预览】:
laravel-short-schedule-master
----composer.json(2KB)
----.php_cs(1KB)
----CONTRIBUTING.md(3KB)
----src()
--------RunConstraints()
--------ShortScheduleServiceProvider.php(392B)
--------PendingShortScheduleCommand.php(3KB)
--------ShortSchedule.php(2KB)
--------Commands()
--------ShortScheduleCommand.php(2KB)
--------Events()
----psalm.xml(631B)
----LICENSE.md(1KB)
----CHANGELOG.md(486B)
----README.md(8KB)