Skip to content

Instantly share code, notes, and snippets.

View nlubisch's full-sized avatar
💻
Coffee2Code

Nick Lubisch nlubisch

💻
Coffee2Code
View GitHub Profile
@nlubisch
nlubisch / install_php.sh
Last active July 12, 2024 00:41
Install PHP7+ with all extensions
#!/usr/bin/env bash
sudo apt-get update && apt-get upgrade
sudo apt-get install software-properties-common -y
sudo add-apt-repository ppa:ondrej/php -y
sudo apt-get update
sudo apt install -y \
php7.4 \
php7.4-bcmath \