@@ -10,9 +10,9 @@ Installing & Setting up the Symfony Framework
1010 Do you prefer video tutorials? Check out the `Stellar Development with Symfony `_
1111 screencast series.
1212
13- To create your new Symfony application, first make sure you're using PHP 7.1 or higher
14- and have `Composer `_ installed. If you don't, start by :doc: ` installing Composer globally < /setup/composer >`
15- on your system. If you want to use a virtual machine (VM), check out :doc: `Homestead </setup/homestead >` .
13+ To create your new Symfony application, first make sure you're using PHP 7.1 or
14+ higher and have `Composer `_ installed. If you don't, start by
15+ :doc: `installing Composer globally </setup/composer >` on your system .
1616
1717Create your new project by running:
1818
@@ -34,23 +34,24 @@ In other words, your new app is ready!
3434
3535 $ composer create-project symfony/skeleton my-project
3636
37- # optional: install the web server bundle (explained next)
38- $ cd my-project
39- $ composer require --dev symfony/web-server-bundle
40-
4137 Running your Symfony Application
4238--------------------------------
4339
4440On production, you should use a web server like Nginx or Apache
4541(see :doc: `configuring a web server to run Symfony </setup/web_server_configuration >`).
46- But for development, it's convenient to use the :doc: `Symfony PHP web server <setup/built_in_web_server >`.
42+ But for development, it's convenient to use the :doc: `Symfony Local Web Server <setup/symfony_server >`.
43+
44+ .. note ::
45+
46+ If you want to use a virtual machine (VM) with Vagrant, check out
47+ :doc: `Homestead </setup/homestead >`.
4748
4849Move into your new project and start the server:
4950
5051.. code-block :: terminal
5152
5253 $ cd my-project
53- $ php bin/console server:run
54+ $ symfony server:start
5455
5556 Open your browser and navigate to ``http://localhost:8000/ ``. If everything is working,
5657you'll see a welcome page. Later, when you are finished working, stop the server
0 commit comments