Last active
November 8, 2019 19:11
-
-
Save sco-tt/b877feca87bbc0d6dda1ba3cc4511da4 to your computer and use it in GitHub Desktop.
Setting Up Scotchbox for Laravel on PHP 7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Props to @Mizener on https://github.com/scotch-io/scotch-box/issues/157 | |
sudo apt-get update | |
sudo add-apt-repository ppa:ondrej/php | |
sudo apt-get install php7.0 | |
sudo apt-get update | |
sudo apt-get install php7.0-mysql libapache2-mod-php7.0 | |
sudo a2dismod php5 | |
sudo a2enmod php7.0 | |
sudo apachectl restart | |
# mbstring for php 7 | |
sudo apt-get install php7.0-mbstring | |
# php XML for php unit | |
sud apt-get instal php7.0-xml | |
# set up SSL | |
https://github.com/scotch-io/scotch-box/issues/290 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment