Skip to content

Commit 5f4512e

Browse files
authored
Merge pull request #318 from sasezaki/php8.5-support
Add PHP 8.5 support
2 parents e321dbd + c525ab6 commit 5f4512e

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
@@ -269,6 +269,22 @@ RUN set -eux; \
269269
php8.4-xml \
270270
php8.4-xsl \
271271
php8.4-zip \
272+
\
273+
php8.5-cli \
274+
php8.5-bcmath \
275+
php8.5-bz2 \
276+
php8.5-curl \
277+
php8.5-dev \
278+
php8.5-fileinfo \
279+
php8.5-intl \
280+
php8.5-mbstring \
281+
php8.5-phar \
282+
php8.5-phpdbg \
283+
php8.5-readline \
284+
php8.5-sockets \
285+
php8.5-xml \
286+
php8.5-xsl \
287+
php8.5-zip \
272288
&& apt autoremove -y \
273289
&& apt clean
274290

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,7 @@ The container the action provides and consumes builds off the ubuntu:focal image
268268
- 8.2
269269
- 8.3
270270
- 8.4
271+
- 8.5
271272

272273
Each provides the following extensions by default:
273274

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 8.4;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 8.5;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)