aboutcoders / supervisor-command-bundle
A symfony bundle that provides console commands to control supervisor instances on top of the https://github.com/yzalis/SupervisorBundle.
Installs: 5 983
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- sensio/framework-extra-bundle: ~3.0
- symfony/symfony: ~2.7|~3.0
- yzalis/supervisor-bundle: ~1
Requires (Dev)
This package is not auto-updated.
Last update: 2024-11-09 19:11:55 UTC
README
AbcSupervisorCommandBundle
A symfony bundle that provides console commands to control supervisor instances (based on the YZSupervisorBundle).
Installation
Follow the installation and configuration instructions of the third party bundles:
Add the AbcSupervisorCommandBundle to your composer.json
file
php composer.phar require aboutcoders/supervisor-command-bundle
Include the bundle in the AppKernel.php class
public function registerBundles() { $bundles = array( // ... new Abc\Bundle\SupervisorCommandBundle\AbcSupervisorCommandBundle(), ); return $bundles; }
Usage
Enter the following command to get information about the available commands:
php app/console list abc:supervisor
ToDo
- Increase unit test coverage