Skip to content

Add a note about testing newer versions of Symfony #11555

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
May 11, 2019
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
11 changes: 11 additions & 0 deletions setup/symfony_server.rst
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,17 @@ commands from the Symfony server:
# creates a new project based on the Symfony Demo application
$ symfony new --demo my_project_name

You can create a project depending on a **development** version as well (note
that Composer will also set the stability to ``dev`` for all root dependencies):

.. code-block:: terminal

# creates a new project based on Symfony's master branch
$ symfony new --version=dev-master my_project_name

# creates a new project based on Symfony's 4.3 dev branch
$ symfony new --version=4.3.x-dev my_project_name

.. _`symfony.com/download`: https://symfony.com/download
.. _`different ways of installing Symfony`: https://symfony.com/download
.. _`Docker`: https://en.wikipedia.org/wiki/Docker_(software)
Expand Down