Forked from lexbeelen/Switch between php version in Laravel Valet
Last active
June 21, 2017 21:03
-
-
Save mmenavas/96d6f4ae2de3f39cbbdd528a0d140ab9 to your computer and use it in GitHub Desktop.
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
PHP 7.1 | |
valet stop && brew services stop php56 && brew unlink php56 && brew link php71 && brew services start php71 && valet start | |
valet stop && brew unlink php56 && brew link php71 && brew services start php71 && valet start | |
PHP 5.6 | |
valet stop && brew services stop php71 && brew unlink php71 && brew link php56 && brew services start php56 && valet start | |
valet stop && brew unlink php71 && brew link php56 && brew services start php56 && valet start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment