Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: also install imagick for PHP #60

Merged
merged 2 commits into from
Oct 25, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,9 @@ install_php() {
cp -rp /usr/local/etc/php/"$PHPVERSION"/php-fpm.d /usr/local/etc/php/"$PHPVERSION"/php-fpm-xdebug.d
sed -i '' "s/^listen = 127.0.0.1:$PHPFPM/listen = 127.0.0.1:$XPHPFPM/g" /usr/local/etc/php/"$PHPVERSION"/php-fpm-xdebug.d/www.conf

echo "Installing Imagick for PHP"
pecl install imagick

echo "[$PHP] ✅ Installed"
echo ""
}
Expand Down Expand Up @@ -233,8 +236,8 @@ for PHP in $PHPS; do
done

echo "
Installing mysql-client, gnu-sed, pv, jq"
brew install gnu-sed mysql-client pv jq &>/dev/null &
Installing mysql-client, gnu-sed, pv, jq, imagemagick, pkg-config"
brew install gnu-sed mysql-client pv jq imagemagick pkg-config &>/dev/null &
spinner

brew link mysql-client --force &>/dev/null &
Expand Down