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
#install PHP with extensions for redis and postgres | |
sudo dpkg -l | grep php | tee packages.txt && | |
sudo add-apt-repository ppa:ondrej/php && | |
sudo apt update && | |
sudo apt install -y php8.2 php8.2-cli php8.2-fpm php-bz2 php-curl php-mbstring php-intl php8.2-xml php-pgsql redis-tools && | |
sudo service apache2 restart && | |
sudo service apache2 status | |
#Install Composer | |
cd ~ && |