Last active
May 2, 2018 16:55
-
-
Save emmanuelbarturen/f75697cc8cc8b6cabaa8a0aae523e341 to your computer and use it in GitHub Desktop.
Laravel requires upgrade Php7.0 to Php7.1
This file contains hidden or 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 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Me funcionó gracias