Skip to content

Commit b8c684f

Browse files
committed
Updated the installation instructions for the Quick Tour
1 parent 94db773 commit b8c684f

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

quick_tour/the_big_picture.rst

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,8 @@ On **Linux** and **Mac OS X** systems, execute the following console commands:
3131

3232
.. code-block:: bash
3333
34-
$ curl -LsS http://symfony.com/installer > symfony.phar
35-
$ sudo mv symfony.phar /usr/local/bin/symfony
36-
$ chmod a+x /usr/local/bin/symfony
34+
$ sudo curl -LsS https://symfony.com/installer -o /usr/local/bin/symfony
35+
$ sudo chmod a+x /usr/local/bin/symfony
3736
3837
After installing the Symfony installer, you'll have to open a new console
3938
window to be able to execute the new ``symfony`` command:
@@ -46,16 +45,16 @@ On **Windows** systems, execute the following console command:
4645

4746
.. code-block:: bash
4847
49-
c:\> php -r "readfile('http://symfony.com/installer');" > symfony.phar
48+
c:\> php -r "readfile('https://symfony.com/installer');" > symfony
5049
51-
This command downloads a file called ``symfony.phar`` which contains the
50+
This command downloads a file called ``symfony`` which contains the
5251
Symfony installer. Save or move that file to the directory where you create
5352
the Symfony projects and then, execute the Symfony installer right away
5453
with this command:
5554

5655
.. code-block:: bash
5756
58-
c:\> php symfony.phar
57+
c:\> php symfony
5958
6059
Creating your First Symfony Project
6160
-----------------------------------
@@ -69,7 +68,7 @@ new Symfony projects. Let's create a new project called ``myproject``:
6968
$ symfony new myproject
7069
7170
# Windows
72-
c:\> php symfony.phar new myproject
71+
c:\> php symfony new myproject
7372
7473
This command downloads the latest Symfony stable version and creates an
7574
empty project in the ``myproject/`` directory so you can start developing

0 commit comments

Comments
 (0)