Skip to content

Commit 03cf933

Browse files
committed
minor #14511 Updating the Installer Related Instructions (ilyabakhlin)
This PR was merged into the 3.4 branch. Discussion ---------- Updating the Installer Related Instructions If you execute the command according the documentation, which would be the following: ```bash symfony new my_project_name --version=3.4 ``` The response would be the following: ```bash Symfony Installer version 1.5.11 ``` However, [according the examples provided in the installer-related blog post](https://symfony.com/blog/introducing-the-new-symfony-installer), the command execution should be as follows: ```bash symfony new my_project_name 3.4 ``` Commits ------- 8cdbb39 Updating the Installer Related Instructions
2 parents 76d6493 + 8cdbb39 commit 03cf933

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

setup.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ with the ``new`` command:
6767

6868
.. code-block:: terminal
6969
70-
$ symfony new my_project_name --version=3.4
70+
$ symfony new my_project_name 3.4
7171
7272
This command creates a new directory called ``my_project_name/`` that contains
7373
an empty project based on the most recent stable Symfony version available. In
@@ -111,14 +111,14 @@ In case your project needs to be based on a specific Symfony version, use the
111111
.. code-block:: terminal
112112
113113
# use the most recent version in any Symfony branch
114-
$ symfony new my_project_name --version=3.3
115-
$ symfony new my_project_name --version=3.4
114+
$ symfony new my_project_name 3.3
115+
$ symfony new my_project_name 3.4
116116
117117
# use the most recent 'lts' version (Long Term Support version)
118-
$ symfony new my_project_name --version=lts
118+
$ symfony new my_project_name lts
119119
120120
# use the 'next' Symfony version to be released (still in development)
121-
$ symfony new my_project_name --version=next
121+
$ symfony new my_project_name next
122122
123123
Each version has its *own* documentation, which you can select on any documentation
124124
page.

0 commit comments

Comments
 (0)