Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use https for the installer file #5218

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion best_practices/creating-the-project.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ to create files and execute the following commands:

# Windows
c:\> cd projects/
c:\projects\> php symfony.phar new blog
c:\projects\> php symfony new blog

This command creates a new directory called ``blog`` that contains a fresh new
project based on the most recent stable Symfony version available. In addition,
Expand Down
4 changes: 2 additions & 2 deletions book/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Open your command console and execute the following commands:

.. code-block:: bash

$ sudo curl -LsS http://symfony.com/installer -o /usr/local/bin/symfony
$ sudo curl -LsS https://symfony.com/installer -o /usr/local/bin/symfony
$ sudo chmod a+x /usr/local/bin/symfony

This will create a global ``symfony`` command in your system.
Expand All @@ -44,7 +44,7 @@ Open your command console and execute the following command:

.. code-block:: bash

c:\> php -r "readfile('http://symfony.com/installer');" > symfony
c:\> php -r "readfile('https://symfony.com/installer');" > symfony

Then, move the downloaded ``symfony`` file to your project's directory and
execute it as follows:
Expand Down