Last active
November 5, 2024 00:58
-
-
Save AllieRays/50f1b3f18bdb60be1d3a88df66962777 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
#Switch between PHP 7.4 and 8.0 and Drush Version 8 and 11 | |
# To use this script download this file and name it switch-php.sh | |
# and give it the correct permissions | |
# You can then run ./switch-php | |
# with the argument 7.4 or just ./switch-php | |
# For example ./switch-php 7.4 | |
## First need to download PHP Versions | |
## brew tap shivammathur/php | |
## brew install shivammathur/php/[email protected] | |
## brew install shivammathur/php/[email protected] | |
## confirm PHP 7.4 is not in the bash_profile path | |
#Switch to PHP 7.4 and Drush 8.x | |
if [[ $1 == "7.4" ]]; | |
then | |
echo "------------------ PHP 7.4 ------------------------" | |
brew unlink PHP | |
brew link --force --overwrite [email protected] | |
# Remove the current version of drush. | |
composer global remove drush/drush | |
# Install drush version 8 | |
composer global require drush/drush:8.x | |
else | |
# Switch to PHP 8.1 and Drush 11. | |
echo "------------------ PHP 8.1 ------------------------" | |
brew unlink PHP | |
brew link --force --overwrite [email protected] | |
# Remove the current version of drush. | |
composer global remove drush/drush | |
# Install drush version 11 | |
composer global require drush/drush | |
fi | |
# Show Me | |
echo "------------------------------------" | |
drush status | |
php --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sadly this no longer works. Drush 8.x now depends on PHP 8.1 and above.
Fatal error: Composer detected issues in your platform: Your Composer dependencies require a PHP version ">= 8.1.0"