Last active
January 29, 2019 08:25
-
-
Save craigiswayne/04498f43c1eec23ed4e0209a1ac16343 to your computer and use it in GitHub Desktop.
Install WP-CLI, Composer and Imagick on Digital Ocean WordPress Droplet (Ubuntu 16)
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
echo "Installing WP-CLI..."; | |
curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar | |
php wp-cli.phar --info | |
chmod +x wp-cli.phar | |
sudo mv wp-cli.phar /usr/local/bin/wp | |
echo "Installing Composer..."; | |
sudo apt-get update; | |
sudo apt-get install curl php-cli php-mbstring git unzip -y; | |
cd ~; | |
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" | |
php composer-setup.php --install-dir=/usr/local/bin --filename=composer | |
php -r "unlink('composer-setup.php');" | |
echo "Installing Imagick PHP Extension"; | |
sudo apt-get install php-imagick -y; | |
cd /var/www/html; | |
wp --info --allow-root; | |
composer --version; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Usage: