igdr / manager-bundle
Manager Bundle
Installs: 1 090
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
Type:symfony-bundle
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(),
// ...
);
}