Skip to content

Commit 3a3d7e8

Browse files
committed
minor #11799 Add Symfony version to symfony new command of Symfony Installer (Mynyx)
This PR was merged into the 3.4 branch. Discussion ---------- Add Symfony version to symfony new command of Symfony Installer Using the Symfony Installer without version parameter leads to an error: ``` $ ./symfony new blog [RuntimeException] The Symfony Installer is not compatible with Symfony 4.x or newer versions. Run this other command to install Symfony using Composer instead: composer create-project symfony/skeleton blog new <directory> [<version>] ``` Commits ------- 7a026da Add Symfony version to symfony new command
2 parents c71813b + 7a026da commit 3a3d7e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

best_practices/creating-the-project.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ to create files and execute the following commands:
2828
.. code-block:: terminal
2929
3030
$ cd projects/
31-
$ symfony new blog
31+
$ symfony new blog 3.4
3232
3333
# Windows
3434
c:\> cd projects/
35-
c:\projects\> php symfony new blog
35+
c:\projects\> php symfony new blog 3.4
3636
3737
.. note::
3838

0 commit comments

Comments
 (0)