@@ -31,9 +31,8 @@ On **Linux** and **Mac OS X** systems, execute the following console commands:
31
31
32
32
.. code-block :: bash
33
33
34
- $ curl -LsS http://symfony.com/installer > symfony.phar
35
- $ sudo mv symfony.phar /usr/local/bin/symfony
36
- $ chmod a+x /usr/local/bin/symfony
34
+ $ sudo curl -LsS https://symfony.com/installer -o /usr/local/bin/symfony
35
+ $ sudo chmod a+x /usr/local/bin/symfony
37
36
38
37
After installing the Symfony installer, you'll have to open a new console
39
38
window to be able to execute the new ``symfony `` command:
@@ -46,16 +45,16 @@ On **Windows** systems, execute the following console command:
46
45
47
46
.. code-block :: bash
48
47
49
- c:\> php -r " readfile('http ://symfony.com/installer');" > symfony.phar
48
+ c:\> php -r " readfile('https ://symfony.com/installer');" > symfony
50
49
51
- This command downloads a file called ``symfony.phar `` which contains the
50
+ This command downloads a file called ``symfony `` which contains the
52
51
Symfony installer. Save or move that file to the directory where you create
53
52
the Symfony projects and then, execute the Symfony installer right away
54
53
with this command:
55
54
56
55
.. code-block :: bash
57
56
58
- c:\> php symfony.phar
57
+ c:\> php symfony
59
58
60
59
Creating your First Symfony Project
61
60
-----------------------------------
@@ -69,7 +68,7 @@ new Symfony projects. Let's create a new project called ``myproject``:
69
68
$ symfony new myproject
70
69
71
70
# Windows
72
- c:\> php symfony.phar new myproject
71
+ c:\> php symfony new myproject
73
72
74
73
This command downloads the latest Symfony stable version and creates an
75
74
empty project in the ``myproject/ `` directory so you can start developing
0 commit comments