From ff2ffa60fcbe26fc4941e17b5e769d604ebb7e14 Mon Sep 17 00:00:00 2001 From: Alexis Lefebvre Date: Sun, 6 Nov 2016 23:22:08 +0100 Subject: [PATCH 1/3] Remove "Symfony3 will use" Since Symfony 3 has been released, using "will" is unnecessary --- best_practices/creating-the-project.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/best_practices/creating-the-project.rst b/best_practices/creating-the-project.rst index 45dcc987220..c9cfbc48a5c 100644 --- a/best_practices/creating-the-project.rst +++ b/best_practices/creating-the-project.rst @@ -157,8 +157,7 @@ structure of Symfony, you can :doc:`override the location of the main directories `: ``cache/``, ``logs/`` and ``web/``. -In addition, Symfony3 will use a slightly different directory structure when -it's released: +In addition, Symfony3 uses a slightly different directory structure: .. code-block:: text From 7c25303efd6bccc8120633a2ec40d383b9f6fb33 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Mon, 21 Nov 2016 10:37:52 +0100 Subject: [PATCH 2/3] Updated the contents for the new Symfony 3 dir structure --- best_practices/creating-the-project.rst | 31 ++++--------------------- 1 file changed, 5 insertions(+), 26 deletions(-) diff --git a/best_practices/creating-the-project.rst b/best_practices/creating-the-project.rst index c9cfbc48a5c..a9c4ebfdcfe 100644 --- a/best_practices/creating-the-project.rst +++ b/best_practices/creating-the-project.rst @@ -128,17 +128,16 @@ that follows these best practices: blog/ ├─ app/ - │ ├─ console - │ ├─ cache/ │ ├─ config/ - │ ├─ logs/ │ └─ Resources/ + ├─ bin/ + │ └─ console ├─ src/ - │ └─ AppBundle/ + ├─ var/ + │ ├─ cache/ + │ └─ logs/ ├─ vendor/ └─ web/ - ├─ app.php - └─ app_dev.php .. tip:: @@ -157,26 +156,6 @@ structure of Symfony, you can :doc:`override the location of the main directories `: ``cache/``, ``logs/`` and ``web/``. -In addition, Symfony3 uses a slightly different directory structure: - -.. code-block:: text - - blog-symfony3/ - ├─ app/ - │ ├─ config/ - │ └─ Resources/ - ├─ bin/ - │ └─ console - ├─ src/ - ├─ var/ - │ ├─ cache/ - │ └─ logs/ - ├─ vendor/ - └─ web/ - -The changes are pretty superficial, but for now, we recommend that you use -the Symfony directory structure. - .. _`Composer`: https://getcomposer.org/ .. _`Phar extension`: http://php.net/manual/en/intro.phar.php .. _`public checksums repository`: https://github.com/sensiolabs/checksums From 99bad570dc429105a7061af77d069b2ff66a2bd2 Mon Sep 17 00:00:00 2001 From: Alexis Lefebvre Date: Wed, 14 Dec 2016 22:46:23 +0100 Subject: [PATCH 3/3] Revert "Updated the contents for the new Symfony 3 dir structure" This reverts commit fbe5c11ad3c68b972aa4d0d27908eba0d6e3a38c. --- best_practices/creating-the-project.rst | 31 +++++++++++++++++++++---- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/best_practices/creating-the-project.rst b/best_practices/creating-the-project.rst index a9c4ebfdcfe..c9cfbc48a5c 100644 --- a/best_practices/creating-the-project.rst +++ b/best_practices/creating-the-project.rst @@ -128,16 +128,17 @@ that follows these best practices: blog/ ├─ app/ + │ ├─ console + │ ├─ cache/ │ ├─ config/ + │ ├─ logs/ │ └─ Resources/ - ├─ bin/ - │ └─ console ├─ src/ - ├─ var/ - │ ├─ cache/ - │ └─ logs/ + │ └─ AppBundle/ ├─ vendor/ └─ web/ + ├─ app.php + └─ app_dev.php .. tip:: @@ -156,6 +157,26 @@ structure of Symfony, you can :doc:`override the location of the main directories `: ``cache/``, ``logs/`` and ``web/``. +In addition, Symfony3 uses a slightly different directory structure: + +.. code-block:: text + + blog-symfony3/ + ├─ app/ + │ ├─ config/ + │ └─ Resources/ + ├─ bin/ + │ └─ console + ├─ src/ + ├─ var/ + │ ├─ cache/ + │ └─ logs/ + ├─ vendor/ + └─ web/ + +The changes are pretty superficial, but for now, we recommend that you use +the Symfony directory structure. + .. _`Composer`: https://getcomposer.org/ .. _`Phar extension`: http://php.net/manual/en/intro.phar.php .. _`public checksums repository`: https://github.com/sensiolabs/checksums