From 92ed9885ec72ced5fe77a161106321ca837a12f0 Mon Sep 17 00:00:00 2001 From: jknapp Date: Tue, 12 Aug 2025 16:41:33 -0700 Subject: [PATCH] Remove php-ioncube-loader from PHP 8.1 to fix Composer installation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The php-ioncube-loader package is incompatible with PHP 8.1 and was causing a segmentation fault (exit code 139) when the Composer installer tried to run PHP. This aligns PHP 8.1 with other PHP versions that already had ioncube-loader removed. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- scripts/install-php81.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-php81.sh b/scripts/install-php81.sh index 3fd3757..0c1293d 100644 --- a/scripts/install-php81.sh +++ b/scripts/install-php81.sh @@ -2,5 +2,5 @@ dnf module enable php:remi-8.1 -y dnf install -y php php-fpm php-mysqlnd php-xml php-pecl-zip php-sodium php-soap php-pecl-xmlrpc \ php-pecl-redis5 php-pecl-memcached php-pecl-memcache php-pecl-ip2location php-pecl-imagick php-pecl-geoip \ -php-mysqlnd php-mbstring php-ioncube-loader php-intl php-gd php-pgsql libzip php-cli +php-mysqlnd php-mbstring php-intl php-gd php-pgsql libzip php-cli exit 0 \ No newline at end of file