hmazter/laravel-schedule-list 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

hmazter/laravel-schedule-list

最新稳定版本:v2.3.0

Composer 安装命令:

composer require hmazter/laravel-schedule-list

包简介

Laravel package to add command to list all scheduled artisan commands

README 文档

README

Build Status StyleCI

Latest Stable Version Latest Unstable Version Total Downloads License

Laravel 5.6+ package to add a artisan command to list all scheduled artisan commands. With schedule time (cron expression), the command to execute and the command description.

Install

Require this package with composer using the following command:

composer require hmazter/laravel-schedule-list

Note! For Laravel version 5.5 and below use 0.2.0 tag.

Usage

Usage from the command line to show all your scheduled artisan commands:

php artisan schedule:list

Outputs:

 +--------------+---------------------+--------------+-------------------------------+
 | expression   | next run at         | command      | description                   |
 +--------------+---------------------+--------------+-------------------------------+
 | 0 14 * * 3 * | 2017-08-16 14:00:00 | email:export | Export users to email service |
 +--------------+---------------------+--------------+-------------------------------+

Crontab style output

Use --cron to show the output in the same style as it would go in a crontab file.

Outputs:

0 14 * * 3 * '/usr/local/bin/php' 'artisan' email:export > '/dev/null' 2>&1`

Verbose output

Use -vv to show the full command, including php binary path and output path.

Outputs:

+--------------+---------------------+----------------------------------------------------------------+-------------------------------+
| expression   | next run at         | command                                                        | description                   |
+--------------+---------------------+----------------------------------------------------------------+-------------------------------+
| 0 14 * * 3 * | 2017-08-16 14:00:00 | '/usr/local/bin/php' 'artisan' email:export > '/dev/null' 2>&1 | Export users to email service |
+--------------+---------------------+----------------------------------------------------------------+-------------------------------+

Using -vv together with --cron does not change to output from normal --cron output.

Programmatic use

For occasions when you need to access the list of scheduled events programmatically \Hmazter\LaravelScheduleList\ScheduleList::all exists that will return all the scheduled events as an array of ScheduleEvent.

Inject the ScheduleList or resolve it from the Container and then call all() to get all scheduled events. Usage of it can be seen in ListScheduler::handle

Define PHP Binary Path

If you use custom PHP Binary paths or you are using \Hmazter\LaravelScheduleList\ScheduleList::all within the context of a web application and not through the console, you can publish the package config file and defining your own binary path:

php artisan vendor:publish --provider="Hmazter\LaravelScheduleList\ScheduleListServiceProvider" --tag="config"

For example config/schedule-list.php:

<?php

return [
    'remove_strings_from_command' => [
        "'".PHP_BINARY."'",
        "'artisan'",
    ],
];

Known limitations

Laravel ships with some special scheduling functions ex between, unlessBetween, when and skip these are not handled right now in the schedule listing output. They are evaluated at each execution of the schedule and does not define any expression that can be included in the table.

统计信息

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

GitHub 信息

  • Stars: 94
  • Watchers: 1
  • Forks: 13
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-08-13