Skip to content
This repository was archived by the owner on Nov 14, 2019. It is now read-only.

Commit 4b32de5

Browse files
committed
Tweaked the README file
1 parent 301ebce commit 4b32de5

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

README.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,32 +19,33 @@ $ sudo chmod a+x /usr/local/bin/symfony
1919
### Windows
2020

2121
```bash
22-
c:\> php -r "readfile('http://symfony.com/installer');" > symfony.phar
22+
c:\> php -r "readfile('http://symfony.com/installer');" > symfony
2323
```
2424

25-
Move the downloaded `symfony.phar` file to your projects directory and execute
25+
Move the downloaded `symfony` file to your projects directory and execute
2626
it as follows:
2727

2828
```bash
29-
c:\> php symfony.phar
29+
c:\> php symfony
3030
```
3131

3232
Using the installer
3333
-------------------
3434

35-
**1. Start a new project with the latest Symfony version**
35+
**1. Start a new project with the latest stable Symfony version**
3636

37-
Execute the `new` command and provide the name of your project:
37+
Execute the `new` command and provide the name of your project as the only
38+
argument:
3839

3940
```bash
4041
# Linux, Mac OS X
4142
$ symfony new my_project
4243

4344
# Windows
44-
$ php symfony.phar new my_project
45+
c:\> php symfony new my_project
4546
```
4647

47-
**2. Start a new project with the latest Symfony LTS version**
48+
**2. Start a new project with the latest Symfony LTS (Long Term Support) version**
4849

4950
Execute the `new` command and provide the name of your project as the first
5051
argument and `lts` as the second argument. The installer will automatically
@@ -55,7 +56,7 @@ select the most recent LTS (*Long Term Support*) version available:
5556
$ symfony new my_project lts
5657

5758
# Windows
58-
$ php symfony.phar new my_project lts
59+
c:\> php symfony new my_project lts
5960
```
6061

6162
**3. Start a new project based on a specific Symfony branch**
@@ -69,7 +70,7 @@ automatically select the most recent version available for the given branch:
6970
$ symfony new my_project 2.3
7071

7172
# Windows
72-
$ php symfony.phar new my_project 2.3
73+
c:\> php symfony new my_project 2.3
7374
```
7475

7576
**4. Start a new project based on a specific Symfony version**
@@ -82,7 +83,7 @@ argument and the exact Symfony version as the second argument:
8283
$ symfony new my_project 2.5.6
8384

8485
# Windows
85-
$ php symfony.phar new my_project 2.5.6
86+
c:\> php symfony new my_project 2.5.6
8687
```
8788

8889
Updating the installer
@@ -96,5 +97,5 @@ installer version, execute the following command:
9697
$ symfony self-update
9798

9899
# Windows
99-
$ php symfony.phar self-update
100+
c:\> php symfony self-update
100101
```

0 commit comments

Comments
 (0)