Use shivammathur/homebrew-php for macOS

This commit is contained in:
Shivam Mathur 2019-12-02 17:14:25 +05:30
parent 7ef437ee9d
commit 8d8c2bd524
No known key found for this signature in database
GPG Key ID: 3E13E4C8591ACC2A

View File

@ -20,13 +20,8 @@ add_log() {
step_log "Setup PHP and Composer" step_log "Setup PHP and Composer"
version=$1 version=$1
export HOMEBREW_NO_INSTALL_CLEANUP=TRUE export HOMEBREW_NO_INSTALL_CLEANUP=TRUE
if [ "$1" = "5.6" ] || [ "$1" = "7.0" ]; then brew tap shivammathur/homebrew-php >/dev/null 2>&1
brew tap exolnet/homebrew-deprecated >/dev/null 2>&1 brew install shivammathur/php/php@"$1" composer >/dev/null 2>&1
fi
if [ "$1" = "7.4" ]; then
brew update >/dev/null 2>&1
fi
brew install php@"$1" composer >/dev/null 2>&1
brew link --force --overwrite php@"$1" >/dev/null 2>&1 brew link --force --overwrite php@"$1" >/dev/null 2>&1
ini_file=$(php -d "date.timezone=UTC" --ini | grep "Loaded Configuration" | sed -e "s|.*:s*||" | sed "s/ //g") ini_file=$(php -d "date.timezone=UTC" --ini | grep "Loaded Configuration" | sed -e "s|.*:s*||" | sed "s/ //g")
echo "date.timezone=UTC" >> "$ini_file" echo "date.timezone=UTC" >> "$ini_file"