Update to PHP 8.3.

This commit is contained in:
Buster Neece 2023-12-15 15:32:46 -06:00
parent 4f9adab922
commit b3404a8583
No known key found for this signature in database
2 changed files with 8 additions and 8 deletions

View File

@ -9,12 +9,6 @@ curl -S "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x90908c2298e5d46
echo "deb [signed-by=/etc/apt/keyrings/audiowaveform.gpg] https://ppa.launchpadcontent.net/chris-needham/ppa/ubuntu jammy main" >> /etc/apt/sources.list.d/audiowaveform.list
echo "deb-src [signed-by=/etc/apt/keyrings/audiowaveform.gpg] https://ppa.launchpadcontent.net/chris-needham/ppa/ubuntu jammy main" >> /etc/apt/sources.list.d/audiowaveform.list
curl -S "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x14aa40ec0831756756d7f66c4f4ea0aae5267a6c" \
| sudo gpg --batch --yes --dearmor --output "/etc/apt/keyrings/php.gpg"
echo "deb [signed-by=/etc/apt/keyrings/php.gpg] https://ppa.launchpadcontent.net/ondrej/php/ubuntu jammy main" >> /etc/apt/sources.list.d/php.list
echo "deb-src [signed-by=/etc/apt/keyrings/php.gpg] https://ppa.launchpadcontent.net/ondrej/php/ubuntu jammy main" >> /etc/apt/sources.list.d/php.list
curl -S "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x19f81a792d451fb0c42afb35fb22bf628e6f7e24" \
| sudo gpg --batch --yes --dearmor --output "/etc/apt/keyrings/sftpgo.gpg"

View File

@ -2,9 +2,15 @@
set -e
set -x
PHP_VERSION=8.2
PHP_VERSION=8.3
# PPA set up in 00_packages.sh
curl -S "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x14aa40ec0831756756d7f66c4f4ea0aae5267a6c" \
| sudo gpg --batch --yes --dearmor --output "/etc/apt/keyrings/php.gpg"
echo "deb [signed-by=/etc/apt/keyrings/php.gpg] https://ppa.launchpadcontent.net/ondrej/php/ubuntu jammy main" >> /etc/apt/sources.list.d/php.list
echo "deb-src [signed-by=/etc/apt/keyrings/php.gpg] https://ppa.launchpadcontent.net/ondrej/php/ubuntu jammy main" >> /etc/apt/sources.list.d/php.list
apt-get update
apt-get install -y --no-install-recommends php${PHP_VERSION}-fpm php${PHP_VERSION}-cli php${PHP_VERSION}-gd \
php${PHP_VERSION}-curl php${PHP_VERSION}-xml php${PHP_VERSION}-zip \