If for some reason using the Symfony Installer is not an option, you can also create a new project using Composer. First of all, make sure you have installed Composer.
Next, you can use the create-project
command to create a new project:
composer create-project symfony/framework-standard-edition my_project_name
Similar to the Symfony Installer, this will install the latest version of the Symfony Standard Edition in a directory called my_project_name
and will then install its dependencies (including the Symfony components).
As with the Symfony Installer, you can select a specific version of Symfony by supplying an optional third argument:
composer create-project symfony/framework-standard-edition my_project_name "2.8.*"
Note however that not all version aliases (such as lts
for example) are available here.