softr / mako-queue
Simple queue package for Mako Framework
Installs: 16
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/softr/mako-queue
Requires
- php: >=5.4
This package is auto-updated.
Last update: 2025-09-29 01:47:01 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',
]
],