Created
July 24, 2022 10:45
-
-
Save Chemaclass/b3cfc7d5109813450a50ae7f6b03141c to your computer and use it in GitHub Desktop.
Using different PHP versions in your local mac
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
# Install the different PHP versions from `shivammathur` | |
brew install shivammathur/php/[email protected] | |
brew install shivammathur/php/[email protected] | |
brew install shivammathur/php/[email protected] | |
# Create a function in your `.zshrc` like: | |
sphp() { | |
brew unlink php && brew link --overwrite --force php@$1 | |
} | |
# And use it: | |
sphp 7.4 | |
sphp 8.0 | |
sphp 8.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment