Skip to content

Commit

Permalink
bug #4494 Updated the Symfony Installer installation instructions (ja…
Browse files Browse the repository at this point in the history
…viereguiluz)

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
  • Loading branch information
wouterj committed Nov 19, 2014
2 parents b81eb4d + f374bf4 commit ad14e78
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 ad14e78

Please sign in to comment.