softr/mako-queue

此包的最新版本(dev-master)没有可用的许可证信息。

Mako 框架的简单队列包

dev-master 2017-07-29 18:41 UTC

This package is auto-updated.

Last update: 2024-08-29 04:25:36 UTC


README

这是一个为 Mako Framework 4.5 设计的简单队列管理器包。

安装

使用 composer 安装。只需将包添加到您的项目中。

composer require softr/mako-queue:*

现在您可以使用单个命令更新您的项目。

composer update

注册服务

安装后,您需要在 app/config/application.php 文件中注册该包。

'packages' =>
[
    ...
    'web' =>
    [
        ...
        // Register the package for web app
        'softr\MakoQueue\MakoQueuePackage',
    ],
    'cli' =>
    [
        ...
        // Register the package for command line app
        'softr\MakoQueue\MakoQueuePackage',
    ]
],