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
v1.1
2014-11-05 09:23 UTC
Requires
- php: >=5.3.3
- doctrine/doctrine-bundle: ~1.2
- doctrine/orm: ~2.2,>=2.2.3
- symfony/symfony: 2.5.*
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(),
// ...
);
}