
This Symfony bundle provides a web interface for mjphaynes/php-resque.
Core features of the web interface are:
The PHP-Resque Web UI is designed to run as part of an existing Symfony application. To use it without an existing app, you can install the Symfony framework and then install the bundle.
Install the bundle using composer:
composer require andaris/resque-webui-bundle
Register the bundle in your application kernel:
<?php
// app/AppKernel.php or src/AppKernel.php
// ...
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = [
// ...
new Andaris\ResqueWebUiBundle\AndarisResqueWebUiBundle(),
];
// ...
}
// ...
}
Configure the routing security for the bundle:
# app/config/security.yml or config/security.yml
access_control:
- { path: ^/resque, roles: YOUR_ADMIN_ROLE } # e.g. ROLE_ADMIN
Enable the routing of the bundle:
# app/config/routing.yml or config/routing.yml
resque:
resource: "@AndarisResqueWebUiBundle/Resources/config/routing.yml"
prefix: /resque/
The Web UI can now be accessed via http://your-application/resque/.
How can I help you explore Laravel packages today?