From a5aa55ffad6f83691eb3b3985491b47a7e0787fc Mon Sep 17 00:00:00 2001 From: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> Date: Thu, 29 Jan 2026 15:03:58 +0100 Subject: [PATCH] Kollection: Update to php 8.5 (#11315) * Upgrade PHP version from 8.4 to 8.5 * Configure PHP version and modules for setup Added PHP version and configuration for setup. --- ct/koillection.sh | 4 +++- install/koillection-install.sh | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ct/koillection.sh b/ct/koillection.sh index dfb2c9e9a..6384c050f 100644 --- a/ct/koillection.sh +++ b/ct/koillection.sh @@ -31,7 +31,9 @@ function update_script() { msg_info "Stopping Service" systemctl stop apache2 msg_ok "Stopped Service" - + + PHP_VERSION="8.5" PHP_APACHE="YES" PHP_MODULE="apcu,ctype,dom,fileinfo,iconv,pgsql" setup_php + msg_info "Creating a backup" mv /opt/koillection/ /opt/koillection-backup msg_ok "Backup created" diff --git a/install/koillection-install.sh b/install/koillection-install.sh index 397cdc371..1bc745c2c 100644 --- a/install/koillection-install.sh +++ b/install/koillection-install.sh @@ -15,7 +15,7 @@ update_os NODE_VERSION="22" NODE_MODULE="yarn@latest" setup_nodejs PG_VERSION="16" setup_postgresql -PHP_VERSION="8.4" PHP_APACHE="YES" PHP_MODULE="apcu,ctype,dom,fileinfo,iconv,pgsql" setup_php +PHP_VERSION="8.5" PHP_APACHE="YES" PHP_MODULE="apcu,ctype,dom,fileinfo,iconv,pgsql" setup_php setup_composer msg_info "Setting up PostgreSQL"