softr/mako-queue

There is no license information available for the latest version (dev-master) of this package.

Simple queue package for Mako Framework

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

This package is auto-updated.

Last update: 2024-04-29 03:38:21 UTC


README

This is a simple queue manager package for Mako Framework 4.5.

Install

Use composer to install. Simply add package to your project.

composer require softr/mako-queue:*

So now you can update your project with a single command.

composer update

Register Service

After installing you'll have to register the package in your app/config/application.php file.

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