@@ -45,7 +45,7 @@ lives inside a bundle (roughly equivalent to a symfony1 plugin) and, by default,
45
45
each bundle lives inside the ``src `` directory. In that way, the ``src ``
46
46
directory is a bit like the ``plugins `` directory in symfony1, but much more
47
47
flexible. Additionally, while *your * bundles will live in the ``src/ `` directory,
48
- third-party bundles may live in the ``vendor/bundles / `` directory.
48
+ third-party bundles will live somewhere in the ``vendor/ `` directory.
49
49
50
50
To get a better picture of the ``src/ `` directory, let's first think of a
51
51
symfony1 application. First, part of your code likely lives inside one or
@@ -74,8 +74,8 @@ The ``vendor/`` directory is basically equivalent to the ``lib/vendor/``
74
74
directory in symfony1, which was the conventional directory for all vendor
75
75
libraries and bundles. By default, you'll find the Symfony2 library files in
76
76
this directory, along with several other dependent libraries such as Doctrine2,
77
- Twig and Swiftmailer. 3rd party Symfony2 bundles usually live in the
78
- ``vendor/bundles/ ``.
77
+ Twig and Swiftmailer. 3rd party Symfony2 bundles live somewhere in the
78
+ ``vendor/ ``.
79
79
80
80
The ``web/ `` Directory
81
81
~~~~~~~~~~~~~~~~~~~~~~
@@ -142,7 +142,7 @@ look for the ``Sensio`` namespace in the ``vendor/sensio`` directory:
142
142
// ...
143
143
$loader->registerNamespaces(array(
144
144
// ...
145
- 'Sensio' => __DIR__.'/../vendor/bundles ',
145
+ 'Sensio' => __DIR__.'/../vendor/sensio/framework-extra-bundle ',
146
146
));
147
147
148
148
If the file did *not * live at this exact location, you'd receive a
0 commit comments