Skip to content

Instantly share code, notes, and snippets.

@emmanuelbarturen
Last active May 2, 2018 16:55
Show Gist options
  • Save emmanuelbarturen/f75697cc8cc8b6cabaa8a0aae523e341 to your computer and use it in GitHub Desktop.
Save emmanuelbarturen/f75697cc8cc8b6cabaa8a0aae523e341 to your computer and use it in GitHub Desktop.
Laravel requires upgrade Php7.0 to Php7.1
$sudo add-apt-repository ppa:ondrej/php
$sudo apt-get update
(optional) sudo apt-get remove php7.0
$sudo apt-get install php7.1
$sudo apt-get install php7.1-fpm
# config de extensiones php
$sudo apt-get install php7.1-xml
$sudo apt-get install php7.1-gd
$sudo apt-get install php7.1-mbstring
$sudo apt-get install php-curl
# Si te aparece "Could not find Driver" cuando intentas hacer php artisan migrate
$sudo apt-get install php-mysql
@cvega93
Copy link

cvega93 commented Sep 30, 2017

Me funcionó gracias

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment