@@ -22,20 +22,20 @@ There are 3 different ways of installing this project depending on your needs:
2222on your computer to run this command:
2323
2424``` bash
25- $ symfony new --demo my_project
25+ symfony new --demo my_project
2626```
2727
2828** Option 2.** [ Download Composer] [ 6 ] and use the ` composer ` binary installed
2929on your computer to run these commands:
3030
3131``` bash
3232# you can create a new project based on the Symfony Demo project...
33- $ composer create-project symfony/symfony-demo my_project
33+ composer create-project symfony/symfony-demo my_project
3434
3535# ...or you can clone the code repository and install its dependencies
36- $ git clone https://github.com/symfony/demo.git my_project
37- $ cd my_project/
38- $ composer install
36+ git clone https://github.com/symfony/demo.git my_project
37+ cd my_project/
38+ composer install
3939```
4040
4141** Option 3.** Click the following button to deploy this project on Platform.sh,
@@ -54,8 +54,8 @@ There's no need to configure anything before running the application. There are
5454** Option 1.** [ Download Symfony CLI] [ 4 ] and run this command:
5555
5656``` bash
57- $ cd my_project/
58- $ symfony serve
57+ cd my_project/
58+ symfony serve
5959```
6060
6161Then access the application in your browser at the given URL (< https://localhost:8000 > by default).
@@ -66,8 +66,8 @@ Then access the application in your browser at the given URL (<https://localhost
6666On your local machine, you can run this command to use the built-in PHP web server:
6767
6868``` bash
69- $ cd my_project/
70- $ php -S localhost:8000 -t public/
69+ cd my_project/
70+ php -S localhost:8000 -t public/
7171```
7272
7373Tests
7676Execute this command to run tests:
7777
7878``` bash
79- $ cd my_project/
80- $ ./bin/phpunit
79+ cd my_project/
80+ ./bin/phpunit
8181```
8282
8383[ 1 ] : https://symfony.com/doc/current/best_practices.html
0 commit comments