Installing Symfony
???? With Composer:
$ composer create-project symfony/website-skeleton mon-super-projet
???? Or after installing symfony
binary from here Download Symfony
$ symfony new my_project --full
Usage
$ cd my_project/
$ symfony serve
If you don’t have the Symfony binary installed, run:
$ php -S localhost:8000 -t public/
Then access the application in your browser at the given URL (https://localhost:8000 by default).
Read more about Installing & Setting up the Symfony Framework
???? Useful link:
Symfony Demo Application: The “Symfony Demo Application” is a reference application created to show how to develop applications following the Symfony Best Practices.