Skip to content

Use HTTPS for downloading the Symfony Installer #6012

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

Merged
merged 1 commit into from
Dec 16, 2015
Merged
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
8 changes: 4 additions & 4 deletions 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 Expand Up @@ -110,10 +110,10 @@ Symfony documentation uses the AppBundle name.
There is no need to prefix the AppBundle with your own vendor (e.g.
AcmeAppBundle), because this application bundle is never going to be
shared.

.. note::
Another reason to create a new bundle is when you're overriding something

Another reason to create a new bundle is when you're overriding something
in a vendor's bundle (e.g. a controller). See :doc:`/cookbook/bundles/inheritance`.

All in all, this is the typical directory structure of a Symfony application
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