1# run this if you are building a traditional web application
2 composer create-project symfony/website-skeleton my_project_name
1# use the most recent LTS version
2$ symfony new my_project_name --version=lts
3
4# use the 'next' Symfony version to be released (still in development)
5$ symfony new my_project_name --version=next
6
7# you can also select an exact specific Symfony version
8$ symfony new my_project_name --version=4.4
9
10# The --full option installs all the packages that you usually need to build web applications.
11