Skip to content

Commit

Permalink
Updated the Symfony Installer installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
javiereguiluz authored and wouterj committed Nov 19, 2014
1 parent b81eb4d commit f374bf4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions quick_tour/the_big_picture.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ On **Linux** and **Mac OS X** systems, execute the following console commands:

.. code-block:: bash
$ curl -sS https://symfony.com/installer | php
$ curl -LsS http://symfony.com/installer > symfony.phar
$ sudo mv symfony.phar /usr/local/bin/symfony
.. note::
Expand All @@ -41,7 +41,7 @@ On **Linux** and **Mac OS X** systems, execute the following console commands:

.. code-block:: bash
$ php -r "readfile('https://symfony.com/installer');" | php
$ php -r "readfile('http://symfony.com/installer');" > symfony.phar
$ sudo mv symfony.phar /usr/local/bin/symfony
After installing the Symfony installer, you'll have to open a new console window
Expand All @@ -53,9 +53,9 @@ to be able to execute the new ``symfony`` command:
On **Windows** systems, execute the following console command:

.. code-block:: bash
.. code-block:: bash
c:\> php -r "readfile('https://symfony.com/installer');" | php
c:\> php -r "readfile('http://symfony.com/installer');" > symfony.phar
This command downloads a file called ``symfony.phar`` which contains the Symfony
installer. Save or move that file to the directory where you create the Symfony
Expand Down

0 comments on commit f374bf4

Please sign in to comment.