creating a demo page in symfony code example
Example 1: create new project symfony
# run this if you are building a traditional web application
$ symfony new my_project_name --full
# run this if you are building a microservice, console application or API
$ symfony new my_project_name
Example 2: symfony demo with composer
$ composer create-project symfony/symfony-demo my_project