Google News
logo
Symfony - Interview Questions
How can we install Symfony2?
We can install Symfony2 using given following command :
 
In Windows :
php -r "readfile('https://symfony.com/installer');" > symphony  
In Linux and macOS System :
sudo mkdir -p /usr/local/bin    
sudo curl -LsS https://symfony.com/installer -o /usr/local/bin/symfony    
sudo chmod a+x /usr/local/bin/symfony
Advertisement