This file contains hidden or 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 | |
| echo "Installing PHP 8" | |
| sudo apt install software-properties-common | |
| sudo add-apt-repository ppa:ondrej/php | |
| sudo apt update | |
| sudo apt install -y php8.0 php8.0-curl php8.0-mysql php8.0-xml php8.0-zip | |
| echo "Installing composer" | |
| cd /tmp |