Last active
October 10, 2019 20:31
-
-
Save cristiancmello/a80f7a36e97030182b9dc70bd9490545 to your computer and use it in GitHub Desktop.
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
sudo add-apt-repository -y ppa:ondrej/php && \ | |
sudo apt update && \ | |
sudo apt install -y curl php7.2 php7.2-common php7.2-cli php7.2-fpm \ | |
php7.2-enchant php7.2-mbstring php7.2-snmp php7.2-bcmath \ | |
php7.2-fpm php7.2-mysql php7.2-soap php7.2-bz2 php7.2-gd php7.2-xml \ | |
php7.2-odbc php7.2-sqlite3 php7.2-cgi php7.2-gmp php7.2-ext-zip \ | |
php7.2-opcache php7.2-sybase php7.2-cli php7.2-imap php7.2-pgsql \ | |
php7.2-tidy php7.2-common php7.2-interbase php7.2-phpdbg php7.2-xmlphp7.2-curl \ | |
php7.2-intl php7.2-pspell php7.2-xmlrpc php7.2-dba php7.2-json \ | |
php7.2-readline php7.2-xsl php7.2-dev php7.2-ldap php7.2-recode php7.2-zip && \ | |
sudo curl -s https://getcomposer.org/installer | php && \ | |
sudo mv composer.phar /usr/local/bin/composer && \ | |
composer global require laravel/installer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment