Table of Contents
Questions & Feedback
Found a typo or an error?
Want to improve this document? Edit it.
Need support or have a technical question?
Post to the user mailing-list.
Master Symfony2 fundamentals
Symfony hosting done right
Discover the SensioLabs Support
SensioGeneratorBundle
SensioGeneratorBundle¶
The SensioGeneratorBundle extends the default Symfony2 command line
interface by providing new interactive and intuitive commands for generating
code skeletons like bundles, form classes or CRUD controllers based on a
Doctrine 2 schema.
Installation¶
Download the bundle and put it under the Sensio\\Bundle\\ namespace.
Then, like for any other bundle, include it in your Kernel class:
1 2 3 4 5 6 7 8 9 10 | public function registerBundles()
{
$bundles = array(
...
new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle(),
);
...
}
|
List of Available Commands¶
The SensioGeneratorBundle comes with four new commands that can be run in
interactive mode or not. The interactive mode asks you some questions to
configure the command parameters to generate the definitive code. The list of
new commands are listed below:





is a trademark of Fabien Potencier. All rights reserved.