xxxxxxxxxx
# 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
xxxxxxxxxx
$ symfony new my_project_directory --version="6.3.*" --webapp
# run this if you are building a microservice, console application or API
$ symfony new my_project_directory --version="6.3.*"
xxxxxxxxxx
$ composer create-project symfony/website-skeleton:"^4.4" my_project_name
xxxxxxxxxx
$ symfony new my_project_directory --webapp
# run this if you are building a microservice, console application or API
$ symfony new my_project_directory
xxxxxxxxxx
$ composer create-project symfony/skeleton:"6.0.*" my_project_directory
$ cd my_project_directory
$ composer require webapp
# run this if you are building a microservice, console application or API
$ composer create-project symfony/skeleton:"6.0.*" my_project_directory