Skip to content

Updating the Installer Related Instructions #14511

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 3, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ with the ``new`` command:

.. code-block:: terminal

$ symfony new my_project_name --version=3.4
$ symfony new my_project_name 3.4

This command creates a new directory called ``my_project_name/`` that contains
an empty project based on the most recent stable Symfony version available. In
Expand Down Expand Up @@ -111,14 +111,14 @@ In case your project needs to be based on a specific Symfony version, use the
.. code-block:: terminal

# use the most recent version in any Symfony branch
$ symfony new my_project_name --version=3.3
$ symfony new my_project_name --version=3.4
$ symfony new my_project_name 3.3
$ symfony new my_project_name 3.4

# use the most recent 'lts' version (Long Term Support version)
$ symfony new my_project_name --version=lts
$ symfony new my_project_name lts

# use the 'next' Symfony version to be released (still in development)
$ symfony new my_project_name --version=next
$ symfony new my_project_name next

Each version has its *own* documentation, which you can select on any documentation
page.
Expand Down