igdr / resource-bundle
Resource Bundle
Installs: 1 056
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.3
- igdr/manager-bundle: dev-master
- symfony/symfony: >=2.4
This package is not auto-updated.
Last update: 2024-12-17 05:21:13 UTC
README
Installation
Add the bundle to your composer.json
:
composer require igdr/resource-bundle
and run:
php composer.phar update
Then add the ResourceBundle to your application kernel:
// app/IgdrKernel.php
public function registerBundles()
{
return array(
// ...
new Igdr\Bundle\ResourceBundle\IgdrResourceBundle(),
// ...
);
}
Add configuration to config.yml
igdr_resource:
controller:
index:
template: "@AppBase/Admin/Abstract/index.html.twig"
edit:
template: "@AppBase/Admin/Abstract/edit.html.twig"