This is a simple queue manager package for Mako Framework 4.5.
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
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',
]
],