aboutcoders/supervisor-command-bundle

A symfony bundle that provides console commands to control supervisor instances on top of the https://github.com/yzalis/SupervisorBundle.

0.1.0 2016-05-15 11:21 UTC

This package is not auto-updated.

Last update: 2024-04-13 15:28:53 UTC


README

AbcSupervisorCommandBundle

A symfony bundle that provides console commands to control supervisor instances (based on the YZSupervisorBundle).

Build Status: Build Status

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