April 2016
Intermediate to advanced
290 pages
5h 51m
English
There are four ways to install the Symfony framework:
The easiest way is to download the Symfony installer and make it publicly accessible via the following commands:
$ sudo curl -LsS https://symfony.com/installer -o /usr/local/bin/symfony $ sudo chmod a+x /usr/local/bin/symfony
Now create a new project simply by running the following command:
$ symfony new mava
As this command shows, it will ask the Symfony installer to create a new folder in the current path called
mava, and when you hit enter, you will see that the Symfony source code will be downloaded to that folder: ...