@@ -65,17 +65,14 @@ are used by your application (including the core Symfony bundles).
65
65
Creating a Bundle
66
66
-----------------
67
67
68
- The Symfony Standard Edition comes with a handy task that creates a fully-functional
69
- bundle for you. Of course, creating a bundle by hand is pretty easy as well.
68
+ `SensioGeneratorBundle `_ is an optional bundle that includes commands to create
69
+ different elements of your application, such as bundles. If you create lots of
70
+ bundles, consider using it. However, this section creates and enables a new
71
+ bundle by hand to show how simple is to do it.
70
72
71
- To show you how simple the bundle system is, create a new bundle called
72
- AcmeTestBundle and enable it.
73
-
74
- .. tip ::
75
-
76
- The ``Acme `` portion is just a dummy name that should be replaced by
77
- some "vendor" name that represents you or your organization (e.g.
78
- ABCTestBundle for some company named ``ABC ``).
73
+ The new bundle is called AcmeTestBundle, where the ``Acme `` portion is just a
74
+ dummy name that should be replaced by some "vendor" name that represents you or
75
+ your organization (e.g. ABCTestBundle for some company named ``ABC ``).
79
76
80
77
Start by creating a ``src/Acme/TestBundle/ `` directory and adding a new file
81
78
called ``AcmeTestBundle.php ``::
@@ -182,3 +179,4 @@ Learn more
182
179
bundles/*
183
180
184
181
.. _`third-party bundles` : https://github.com/search?q=topic%3Asymfony-bundle&type=Repositories
182
+ .. _`SensioGeneratorBundle` : https://github.com/sensiolabs/SensioGeneratorBundle
0 commit comments