File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -210,6 +210,21 @@ RUN export OS_VERSION=$(cat /etc/os-release | grep VERSION_ID | cut -d '"' -f2)
210
210
php8.2-xml \
211
211
php8.2-xsl \
212
212
php8.2-zip \
213
+ \
214
+ php8.3-cli \
215
+ php8.3-bz2 \
216
+ php8.3-curl \
217
+ php8.3-dev \
218
+ php8.3-fileinfo \
219
+ php8.3-intl \
220
+ php8.3-mbstring \
221
+ php8.3-phar \
222
+ php8.3-phpdbg \
223
+ php8.3-readline \
224
+ php8.3-sockets \
225
+ php8.3-xml \
226
+ php8.3-xsl \
227
+ php8.3-zip \
213
228
&& apt autoremove -y \
214
229
&& apt clean
215
230
@@ -250,7 +265,7 @@ COPY composer.json \
250
265
251
266
RUN cd /tools \
252
267
# Install `ext-bcmath` as it seems to be a requirement for `roave/backward-compatibility-check`
253
- && apt install -y php-bcmath \
268
+ && apt install -y php-bcmath php8.3-bcmath \
254
269
&& composer install \
255
270
--classmap-authoritative
256
271
Original file line number Diff line number Diff line change @@ -237,6 +237,7 @@ The container the action provides and consumes builds off the ubuntu:focal image
237
237
- 8.0
238
238
- 8.1
239
239
- 8.2
240
+ - 8.3
240
241
241
242
Each provides the following extensions by default :
242
243
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ SUBSTITUTIONS+=('s/mysqlnd.collect_memory_statistics ?= ?(On|Off)/mysqlnd.collec
14
14
SUBSTITUTIONS+=(' s/zend.assertions ?= ?(-1|1)/zend.assertions = 1/' )
15
15
SUBSTITUTIONS+=(' s/opcache.huge_code_pages ?= ?(0|1)/opcache.huge_code_pages = 0/' )
16
16
17
- for PHP_VERSION in 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2; 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 ; do
18
18
for PHP_SAPI in cli phpdbg; do
19
19
INI_FILE=" /etc/php/${PHP_VERSION} /${PHP_SAPI} /php.ini"
20
20
for SUBSTITUTION in " ${SUBSTITUTIONS[@]} " ; do
You can’t perform that action at this time.
0 commit comments