From a61a8817ba3bb8c3489744671b69bab67cf4c218 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Wed, 29 Apr 2015 12:37:37 +0200 Subject: [PATCH 1/3] Use https for the installer file --- book/installation.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book/installation.rst b/book/installation.rst index 407cfc36704..ed6bc171fc3 100644 --- a/book/installation.rst +++ b/book/installation.rst @@ -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. @@ -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: From 40b9cff15332f9a8e792fb61cc2d6e40c335a49a Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Wed, 29 Apr 2015 17:35:27 +0200 Subject: [PATCH 2/3] Replaced all "symfony.phar" occurrences by "symfony" for Windows users --- best_practices/creating-the-project.rst | 2 +- book/installation.rst | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/best_practices/creating-the-project.rst b/best_practices/creating-the-project.rst index 60e6db3be55..ff05d49cabe 100644 --- a/best_practices/creating-the-project.rst +++ b/best_practices/creating-the-project.rst @@ -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, diff --git a/book/installation.rst b/book/installation.rst index ed6bc171fc3..9e0d5ee6ecf 100644 --- a/book/installation.rst +++ b/book/installation.rst @@ -109,6 +109,9 @@ most recent :ref:`Symfony LTS version ` available: $ symfony new my_project_name lts + # Windows + c:\projects\> php symfony new my_project_name lts + Read the :doc:`Symfony Release process ` to better understand why there are several Symfony versions and which one to use for your projects. From c8fb959a82b9f4cc2cbfa7075c1e83a4eb11704d Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Mon, 14 Dec 2015 17:46:02 +0100 Subject: [PATCH 3/3] Removed a redundant explanation --- book/installation.rst | 3 --- 1 file changed, 3 deletions(-) diff --git a/book/installation.rst b/book/installation.rst index 9e0d5ee6ecf..ed6bc171fc3 100644 --- a/book/installation.rst +++ b/book/installation.rst @@ -109,9 +109,6 @@ most recent :ref:`Symfony LTS version ` available: $ symfony new my_project_name lts - # Windows - c:\projects\> php symfony new my_project_name lts - Read the :doc:`Symfony Release process ` to better understand why there are several Symfony versions and which one to use for your projects.