Skip to content

Commit 6b7477c

Browse files
authored
Adding version option
Added version option to setup selected version in doc
1 parent 44d77e5 commit 6b7477c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ application:
4444
.. code-block:: terminal
4545
4646
# run this if you are building a traditional web application
47-
$ symfony new my_project_name --full
47+
$ symfony new my_project_name --version=4.4 --full
4848
4949
# run this if you are building a microservice, console application or API
50-
$ symfony new my_project_name
50+
$ symfony new my_project_name --version=4.4
5151
5252
The only difference between these two commands is the number of packages
5353
installed by default. The ``--full`` option installs all the packages that you
@@ -59,10 +59,10 @@ Symfony application using Composer:
5959
.. code-block:: terminal
6060
6161
# run this if you are building a traditional web application
62-
$ composer create-project symfony/website-skeleton my_project_name
62+
$ composer create-project symfony/website-skeleton:v4.4.99 my_project_name
6363
6464
# run this if you are building a microservice, console application or API
65-
$ composer create-project symfony/skeleton my_project_name
65+
$ composer create-project symfony/skeleton:v4.4.99 my_project_name
6666
6767
No matter which command you run to create the Symfony application. All of them
6868
will create a new ``my_project_name/`` directory, download some dependencies

0 commit comments

Comments
 (0)