Skip to content

Commit

Permalink
Switch back to 3.3.0. Add to PHP 8.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
desrosj committed Dec 4, 2024
1 parent 8416648 commit 94727bb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion images/8.3/php/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN set -ex; \
\
docker-php-ext-install gd opcache mysqli zip exif intl mbstring xml xsl; \
\
pecl install memcached-3.2.0; \
pecl install memcached-3.3.0; \
pecl install xdebug-3.4.0; \
\
curl --silent --fail --location --retry 3 --output /tmp/installer.php --url https://getcomposer.org/installer; \
Expand Down
1 change: 1 addition & 0 deletions images/8.4/php/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ RUN set -ex; \
\
docker-php-ext-install gd opcache mysqli zip exif intl mbstring xml xsl; \
\
pecl install memcached-3.3.0; \
pecl install xdebug-3.4.0; \
\
curl --silent --fail --location --retry 3 --output /tmp/installer.php --url https://getcomposer.org/installer; \
Expand Down
4 changes: 2 additions & 2 deletions update.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
'base_name' => 'php:8.3-fpm',
'apt' => array( 'libjpeg-dev', 'libpng-dev', 'libwebp-dev', 'libzip-dev', 'libssl-dev', 'libmemcached-dev', 'unzip', 'libmagickwand-dev', 'ghostscript', 'libonig-dev', 'locales', 'sudo', 'rsync', 'libxslt-dev' ),
'extensions' => array( 'gd', 'opcache', 'mysqli', 'zip', 'exif', 'intl', 'mbstring', 'xml', 'xsl' ),
'pecl_extensions' => array( 'memcached-3.2.0', 'xdebug-3.4.0' ),
'pecl_extensions' => array( 'memcached-3.3.0', 'xdebug-3.4.0' ),
'composer' => true,
),
'phpunit' => 9,
Expand All @@ -130,7 +130,7 @@
'base_name' => 'php:8.4-fpm',
'apt' => array( 'libjpeg-dev', 'libpng-dev', 'libwebp-dev', 'libzip-dev', 'libmemcached-dev', 'unzip', 'libmagickwand-dev', 'ghostscript', 'libonig-dev', 'locales', 'sudo', 'rsync', 'libxslt-dev' ),
'extensions' => array( 'gd', 'opcache', 'mysqli', 'zip', 'exif', 'intl', 'mbstring', 'xml', 'xsl' ),
'pecl_extensions' => array( 'xdebug-3.4.0' ),
'pecl_extensions' => array( 'memcached-3.3.0', 'xdebug-3.4.0' ),
'composer' => true,
),
'phpunit' => 9,
Expand Down

0 comments on commit 94727bb

Please sign in to comment.