deploymate / app /templates /php_setup.j2
shakauthossain's picture
Version 1.0.0
4e9eb6a
raw
history blame contribute delete
278 Bytes
#!/bin/bash
# PHP setup script
sudo apt-get update
sudo apt-get install -y php php-fpm php-mysql php-xml php-mbstring php-curl php-zip php-gd php-intl php-bcmath
# Install Composer
curl -sS https://getcomposer.org/installer | php
sudo mv composer.phar /usr/local/bin/composer