Skip to content

Stop mentioning that flex can install specific symfony version #8886

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

Closed
wants to merge 1 commit into from
Closed
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
8 changes: 4 additions & 4 deletions setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ In other words, your new app is ready!

.. tip::

You can also download a specific version of Symfony:
You can also specify which major version of Symfony will be downloaded:

.. code-block:: terminal

# use the most recent version in any Symfony branch
$ composer create-project symfony/skeleton my-project "3.3.*"
# use the most recent Symfony 3.* version
$ composer create-project symfony/skeleton my-project "3.*"

# use a beta or RC version (useful for testing new Symfony versions)
$ composer create-project symfony/skeleton my-project 3.3.0-BETA1
$ composer create-project symfony/skeleton my-project "^4@beta"

Some version are long-term support (LTS) versions. Read the :doc:`Symfony Release process </contributing/community/releases>`
to learn more.
Expand Down