ano / generator-bundle
Code generation bundle
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
This package is not auto-updated.
Last update: 2024-11-18 14:13:48 UTC
README
Installation
First, install the bundle package with composer:
$ php composer.phar require ano/generator-bundle
Next, activate the bundle (and bundle it depends on) into app/AppKernel.php
:
<?php // ... public function registerBundles() { $bundles = array( //... new Ano\GeneratorBundle\AnoGeneratorBundle(), ); // ... }