Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Extrodox/a545c68a4b7f63d1e93f3283100e5542 to your computer and use it in GitHub Desktop.
Save Extrodox/a545c68a4b7f63d1e93f3283100e5542 to your computer and use it in GitHub Desktop.
Set up laravel 5.6 with php 5.2.3, mysql-server and apache2
sudo -s;
apt-get -y update;
apt-get install python-software-properties;
yes | add-apt-repository ppa:ondrej/php;
apt-get -y update;
apt-get install -y php7.2;
apt-get install -y php-pear php7.2-curl php7.2-dev php7.2-gd php7.2-mbstring php7.2-zip php7.2-mysql php7.2-xml
apt-get install -y mysql-server;
apt-get install -y curl;
sudo curl -s https://getcomposer.org/installer | php;
sudo mv composer.phar /usr/local/bin/composer;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment