Last active
January 17, 2025 05:19
-
-
Save kimpepper/f0bd41ff17fc3e401c085771515762c0 to your computer and use it in GitHub Desktop.
Install PHP dependencies for Drupal local development
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 | |
set -euo pipefail | |
IFS=$'\n\t' | |
sudo apt update | |
sudo apt --yes install mysql-client | |
v=8.4 | |
sudo apt --yes install \ | |
php$v-cli \ | |
php$v-curl \ | |
php$v-gd \ | |
php$v-mbstring \ | |
php$v-mysql \ | |
php$v-sqlite3 \ | |
php$v-xdebug \ | |
php$v-xml \ | |
php$v-zip | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment