29 lines
679 B
Bash
Executable File
29 lines
679 B
Bash
Executable File
#!/bin/bash
|
|
. "../src/01-common.sh" || exit 5
|
|
PHPVER="8.1"
|
|
title "Installing php${PHPVER}..."
|
|
|
|
sudo LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php
|
|
apti php${PHPVER} \
|
|
php${PHPVER}-xdebug \
|
|
php${PHPVER}-bcmath \
|
|
php${PHPVER}-bz2 \
|
|
php${PHPVER}-curl \
|
|
php${PHPVER}-gd \
|
|
php${PHPVER}-json \
|
|
php${PHPVER}-mbstring \
|
|
php${PHPVER}-mysql \
|
|
php${PHPVER}-opcache \
|
|
php${PHPVER}-pgsql \
|
|
php${PHPVER}-soap \
|
|
php${PHPVER}-xml \
|
|
php${PHPVER}-xmlrpc \
|
|
php${PHPVER}-xsl \
|
|
php${PHPVER}-zip
|
|
# php${PHPVER}-common
|
|
# php${PHPVER}-cli
|
|
# php${PHPVER}-dba
|
|
# php${PHPVER}-ldap
|
|
# php${PHPVER}-sqlite3
|
|
php -v
|