Laravel framework installation in linux(ubuntu)
->First, update the package manager cache by running: sudo apt-get update -> Download Composer and php5-cli for installing and running for project dependencies as well as curl. it can be installed with the following command: sudo apt-get install curl php5-cli git -> Install Composer First cd ~ curl -sS https://getcomposer.org/installer | sudo php //Composer successfully installed to: /home/sandeep/composer.phar -> Installer Composer Globally sudo mv composer.phar /usr/local/bin/composer ->Install Laravel cd /var/www/html composer create-project laravel/laravel your-project --prefer-dist -> Set up your Apache virtual host # Copy default Apache conf sudo cp /etc/apache2/sites-available/000-default /etc/apache2/sites-available/laravel.conf ...