nickurt / beanstalkd-ui
Beanstalkd UI (Admin)
Requires
- php: >=5.4.0
- pda/pheanstalk: 3.*
Suggests
- slm/queue: Job queue abstraction layer
- slm/queue-beanstalkd: Adapter for Beanstalkd
This package is not auto-updated.
Last update: 2019-10-09 02:49:12 UTC
README
Intro
A simple Beanstalkd Admin UI to get information about your jobs, it is not required to have SlmQueue/SlmQueueBeanstalkd installed, but to fire jobs it's required.
This is only a shell/ui to get information about your jobs.
Install
Installation with the composer
php composer.phar require nickurt/beanstalkd-ui:dev-master
Requirements
- PHP5.4+
- Zend Framework 2.3.*
- Pda Pheanstalk
- SlmQueue (0.4.*) (optional)
- SlmQueueBeanstalkd (0.4.*) (optional)
Post Installation
Enable it in your application.config.php
file
<?php return [ 'modules' => [ // ... 'ZfBeanstalkdUI', ], // ... ];
Configuration
Config
When you are already using SlmQueue/SlmQueueBeanstalkd, it is not needed to copy any configuration files.
ZfBeanstalkdUI will automatic detect your configuration settings, due it used the same connection service/files as SlmQueueBeanstalkd.
When you are not using this, copy the file (remove the *.dist) config/zfbeanstalkd_config.local.php.dist
to your config/autoload
folder and change the configuration settings.
Routes
Yes!, it is possible to change the routes of the application, just copy (remove the *.dist) the config/zfbeanstalkd_routes.local.php.dist
file to your config/autoload
folder and change the settings.