Created
April 17, 2018 15:21
-
-
Save cviebrock/ae22d3ff547f6c1e2ccfee09d4bc8c1e to your computer and use it in GitHub Desktop.
Helper to switch between brew versions of PHP
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
#!/usr/bin/env bash | |
CX="\033[0m" | |
CR="\033[31m" | |
CG="\033[32m" | |
CY="\033[33m" | |
FULL_VER=`php -r 'echo phpversion();'` | |
VER=`php -r 'echo phpversion();' | cut -d '.' -f1,2` | |
echo -e "${CY}Current PHP version:${CX} ${FULL_VER}"; | |
if [ "$VER" == "5.6" ]; then | |
(brew unlink [email protected] && brew link [email protected]) >/dev/null | |
else | |
(brew unlink [email protected] && brew link --force [email protected]) >/dev/null | |
fi | |
NEW_VER=`php -r 'echo phpversion();'` | |
echo -e "${CG}New PHP version:${CX} ${NEW_VER}"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment