Skip to content

Commit f474cab

Browse files
authored
Merge pull request #241 from gsteel/php-8.4-support
Initial support for PHP 8.4
2 parents 4fc42cc + 8b64021 commit f474cab

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

Dockerfile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,22 @@ RUN set -eux; \
253253
php8.3-xml \
254254
php8.3-xsl \
255255
php8.3-zip \
256+
\
257+
php8.4-cli \
258+
php8.4-bcmath \
259+
php8.4-bz2 \
260+
php8.4-curl \
261+
php8.4-dev \
262+
php8.4-fileinfo \
263+
php8.4-intl \
264+
php8.4-mbstring \
265+
php8.4-phar \
266+
php8.4-phpdbg \
267+
php8.4-readline \
268+
php8.4-sockets \
269+
php8.4-xml \
270+
php8.4-xsl \
271+
php8.4-zip \
256272
&& apt autoremove -y \
257273
&& apt clean
258274

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,7 @@ The container the action provides and consumes builds off the ubuntu:focal image
267267
- 8.1
268268
- 8.2
269269
- 8.3
270+
- 8.4
270271

271272
Each provides the following extensions by default:
272273

scripts/php_ini_dev_settings.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ SUBSTITUTIONS+=('s/mysqlnd.collect_memory_statistics ?= ?(On|Off)/mysqlnd.collec
1414
SUBSTITUTIONS+=('s/zend.assertions ?= ?(-1|1)/zend.assertions = 1/')
1515
SUBSTITUTIONS+=('s/opcache.huge_code_pages ?= ?(0|1)/opcache.huge_code_pages = 0/')
1616

17-
for PHP_VERSION in 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3;do
17+
for PHP_VERSION in 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4;do
1818
for PHP_SAPI in cli phpdbg; do
1919
INI_FILE="/etc/php/${PHP_VERSION}/${PHP_SAPI}/php.ini"
2020
for SUBSTITUTION in "${SUBSTITUTIONS[@]}";do

0 commit comments

Comments
 (0)