Skip to content

Commit de31ae9

Browse files
committed
Tweaks
1 parent 248c56f commit de31ae9

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
.phpunit.result.cache
1818
/phpunit.xml
1919
###< symfony/phpunit-bridge ###
20-
2120
###> symfony/webpack-encore-bundle ###
2221
/node_modules/
2322
npm-debug.log

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,13 @@ $ symfony new --demo my_project
2626
Alternatively, you can use Composer:
2727

2828
```bash
29+
# you can create a new project based on the Symfony Demo project...
2930
$ composer create-project symfony/symfony-demo my_project
31+
32+
# ...or you can clone the code repository and install its dependencies
33+
$ git clone https://github.com/symfony/demo.git my_project
34+
$ cd my_project/
35+
$ composer install
3036
```
3137

3238
If you want to test the demo without installing anything locally, you can also
@@ -47,13 +53,6 @@ $ cd my_project/
4753
$ symfony serve
4854
```
4955

50-
If you have cloned the [GitHub repository](https://github.com/symfony/demo), you
51-
must install the Composer dependencies.
52-
53-
```bash
54-
$ composer install
55-
```
56-
5756
Then access the application in your browser at the given URL (<https://localhost:8000> by default).
5857

5958
If you don't have the Symfony binary installed, run `php -S localhost:8000 -t public/`

0 commit comments

Comments
 (0)