Skip to content

Instantly share code, notes, and snippets.

@Chemaclass
Created July 24, 2022 10:45
Show Gist options
  • Save Chemaclass/b3cfc7d5109813450a50ae7f6b03141c to your computer and use it in GitHub Desktop.
Save Chemaclass/b3cfc7d5109813450a50ae7f6b03141c to your computer and use it in GitHub Desktop.
Using different PHP versions in your local mac
# 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