Skip to content

Commit fbe5c11

Browse files
Updated the contents for the new Symfony 3 dir structure
1 parent 90a141f commit fbe5c11

File tree

1 file changed

+5
-26
lines changed

1 file changed

+5
-26
lines changed

best_practices/creating-the-project.rst

+5-26
Original file line numberDiff line numberDiff line change
@@ -128,17 +128,16 @@ that follows these best practices:
128128
129129
blog/
130130
├─ app/
131-
│ ├─ console
132-
│ ├─ cache/
133131
│ ├─ config/
134-
│ ├─ logs/
135132
│ └─ Resources/
133+
├─ bin/
134+
│ └─ console
136135
├─ src/
137-
│ └─ AppBundle/
136+
├─ var/
137+
│ ├─ cache/
138+
│ └─ logs/
138139
├─ vendor/
139140
└─ web/
140-
├─ app.php
141-
└─ app_dev.php
142141
143142
.. tip::
144143

@@ -157,26 +156,6 @@ structure of Symfony, you can
157156
:doc:`override the location of the main directories </configuration/override_dir_structure>`:
158157
``cache/``, ``logs/`` and ``web/``.
159158

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-
180159
.. _`Composer`: https://getcomposer.org/
181160
.. _`Phar extension`: http://php.net/manual/en/intro.phar.php
182161
.. _`public checksums repository`: https://github.com/sensiolabs/checksums

0 commit comments

Comments
 (0)