8000 bug #4494 Updated the Symfony Installer installation instructions (ja… · symfony/symfony-docs@ad14e78 · GitHub
[go: up one dir, main page]

Skip to content

Commit ad14e78

Browse files
committed
bug #4494 Updated the Symfony Installer installation instructions (javiereguiluz)
This PR was squashed before being merged into the 2.3 branch (closes #4494). Discussion ---------- Updated the Symfony Installer installation instructions | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | all | Fixed tickets | - @weaverryan @wouterj @xabbuh I'm truly sorry for *pushing* you, but this is a **ultra-high priority PR** because the current Symfony installation instructions displayed on http://symfony.com/doc/current/quick_tour/the_big_picture.html are broken. Commits ------- f374bf4 Updated the Symfony Installer installation instructions
2 parents b81eb4d + f374bf4 commit ad14e78

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

quick_tour/the_big_picture.rst

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

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

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

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

0 commit comments

Comments
 (0)
0