定制 hexalgo-labs/cron-style-scheduler-bundle 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

hexalgo-labs/cron-style-scheduler-bundle

Composer 安装命令:

composer require hexalgo-labs/cron-style-scheduler-bundle

包简介

Manage your automated commands execution by using annotation which use cron expression. Compatible with Symfony 4 and 5.

README 文档

README

This bundle allow you to manage your automated command execution directly on your Symfony command with an annotation.

Install the bundle

To install this bundle you need to do two things:

  • Add the dependency in your project with composer
  • Add an entry in crontab to launch the main command every minute

Install the dependency

You can install the bundle via composer this command

composer require hexalgo-labs/cron-style-scheduler-bundle

Add an entry in crontab

Add the following line in crontab

* * * * * php /path/to/your/project/bin/console cron:run >> /dev/null 2>&1

This command will be executed every minute, and will check if there is command which is due and launch it

How to use it

On your Symfony command, add the annotation CronCommand with the cron expression on the class.

For example:

use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Hexalgo\CronStyleSchedulerBundle\Annotation\CronCommand;

/**
 * @CronCommand("30 * * * *")
 */
class MyTestCommand extends Command
{
  public static $defaultName = 'app:test-command';

  protected function execute(InputInterface $input, OutputInterface $output) : int
  {
      return 1;
  }
}

This command will be executed every 30 minutes.

To help you to create the cron expression you can use https://crontab.guru.

Note for Windows user

When using this bundle with Windows, the command will not be executed in background when you start the command cron:run. The command will wait until all the launched commands are executed completely before finishing.

Hexalgo

We are a french agency specialized in Symfony applications for business.

TO DO

  • Add command log
  • Send email / notification after command completion (fail or success)
  • Write tests

统计信息

  • 总下载量: 308
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 2
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2021-10-25

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固