WARNING:
You are browsing the documentation for version
2.2 which is not maintained anymore.
If some of your projects are still using this version, consider upgrading.
SensioGeneratorBundle
2.2 version
Maintained
Unmaintained
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:
This work, including the code samples, is licensed under a Creative Commons BY-SA 3.0 license.