https://github.com/xelan/resque-webui-bundle
PHP-Resque WebUI Bundle
https://github.com/xelan/resque-webui-bundle
hacktoberfest php php-resque resque symfony-bundle
Last synced: about 1 month ago
JSON representation
PHP-Resque WebUI Bundle
- Host: GitHub
- URL: https://github.com/xelan/resque-webui-bundle
- Owner: xelan
- License: bsd-3-clause
- Created: 2017-12-24T13:33:59.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-06-02T10:13:31.000Z (over 5 years ago)
- Last Synced: 2025-05-22T12:00:06.292Z (9 months ago)
- Topics: hacktoberfest, php, php-resque, resque, symfony-bundle
- Language: CSS
- Homepage:
- Size: 227 KB
- Stars: 5
- Watchers: 5
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# PHP-Resque Web UI

This Symfony bundle provides a web interface for [mjphaynes/php-resque](https://github.com/mjphaynes/php-resque).
Core features of the web interface are:
- Overview of running workers (similar to bin/resque workers)
- Overview of all queues (similar to bin/resque queues)
- Overview of all jobs
- View job details, JSON formatting and easy copy/paste of payload
- Easy installation as Symfony bundle, integration (routing, security, ...)
- Easy style customization/branding via Bootstrap3 themes and Symfony bundle overrides
## Requirements
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](http://symfony.com/doc/current/setup.html) and then install the bundle.
## Installation
Install the bundle using composer:
```bash
composer require andaris/resque-webui-bundle
```
Register the bundle in your application kernel:
```php