@@ -20,7 +20,7 @@ So, sit back and relax as you travel from "then" to "now".
20
20
Directory Structure
21
21
-------------------
22
22
23
- When looking at a Symfony2 project - for example, the `Symfony2 Standard `_ -
23
+ When looking at a Symfony2 project - for example, the `Symfony2 Standard Edition `_ -
24
24
you'll notice a very different directory structure than in symfony1. The
25
25
differences, however, are somewhat superficial.
26
26
@@ -133,13 +133,13 @@ example::
133
133
}
134
134
135
135
The file itself lives at
136
- ``vendor/bundle /Sensio/Bundle/FrameworkExtraBundle/SensioFrameworkExtraBundle.php ``.
136
+ ``vendor/bundles /Sensio/Bundle/FrameworkExtraBundle/SensioFrameworkExtraBundle.php ``.
137
137
As you can see, the location of the file follows the namespace of the class.
138
138
Specifically, the namespace, ``Sensio\Bundle\FrameworkExtraBundle ``, spells out
139
139
the directory that the file should live in
140
- (``vendor/bundle /Sensio/Bundle/FrameworkExtraBundle ``). This is because, in the
140
+ (``vendor/bundles /Sensio/Bundle/FrameworkExtraBundle ``). This is because, in the
141
141
``app/autoload.php `` file, you'll configure Symfony to look for the ``Sensio ``
142
- namespace in the ``vendor/bundle `` directory:
142
+ namespace in the ``vendor/bundles `` directory:
143
143
144
144
.. code-block :: php
145
145
@@ -367,4 +367,4 @@ In reality, the Symfony2 configuration is much more powerful and is used
367
367
primarily to configure objects that you can use. For more information, see
368
368
the chapter titled ":doc: `/book/service_container `".
369
369
370
- .. _`Symfony2 Standard` : https://github.com/symfony/symfony-standard
370
+ .. _`Symfony2 Standard Edition ` : https://github.com/symfony/symfony-standard
0 commit comments