File tree 1 file changed +26
-5
lines changed
1 file changed +26
-5
lines changed Original file line number Diff line number Diff line change @@ -128,16 +128,17 @@ that follows these best practices:
128
128
129
129
blog/
130
130
├─ app/
131
+ │ ├─ console
132
+ │ ├─ cache/
131
133
│ ├─ config/
134
+ │ ├─ logs/
132
135
│ └─ Resources/
133
- ├─ bin/
134
- │ └─ console
135
136
├─ src/
136
- ├─ var/
137
- │ ├─ cache/
138
- │ └─ logs/
137
+ │ └─ AppBundle/
139
138
├─ vendor/
140
139
└─ web/
140
+ ├─ app.php
141
+ └─ app_dev.php
141
142
142
143
.. tip ::
143
144
@@ -156,6 +157,26 @@ structure of Symfony, you can
156
157
:doc: `override the location of the main directories </configuration/override_dir_structure >`:
157
158
``cache/ ``, ``logs/ `` and ``web/ ``.
158
159
160
+ In addition, Symfony3 uses a slightly different directory structure:
161
+
162
+ .. code-block :: text
163
+
164
+ blog-symfony3/
165
+ ├─ app/
166
+ │ ├─ config/
167
+ │ └─ Resources/
168
+ ├─ bin/
169
+ │ └─ console
170
+ ├─ src/
171
+ ├─ var/
172
+ │ ├─ cache/
173
+ │ └─ logs/
174
+ ├─ vendor/
175
+ └─ web/
176
+
177
+ The changes are pretty superficial, but for now, we recommend that you use
178
+ the Symfony directory structure.
179
+
159
180
.. _`Composer` : https://getcomposer.org/
160
181
.. _`Phar extension` : http://php.net/manual/en/intro.phar.php
161
182
.. _`public checksums repository` : https://github.com/sensiolabs/checksums
You can’t perform that action at this time.
0 commit comments