igdr/manager-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (v1.1) of this package.

Manager Bundle

Installs: 1 089

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 1

Open Issues: 0

Type:symfony-bundle

v1.1 2014-11-05 09:23 UTC

This package is not auto-updated.

Last update: 2019-02-20 18:17:11 UTC


README

Installation

Add the bundle to your composer.json:

composer require igdr/manager-bundle

and run:

php composer.phar update

Then add the ManagerBundle to your application kernel:

// app/IgdrKernel.php
public function registerBundles()
{
    return array(
        // ...
        new Igdr\Bundle\ManagerBundle\IgdrManagerBundle(),
        // ...
    );
}