Skip to content

Commit 22bcd4e

Browse files
committed
Run tests in PHP 8.3 in GA - Part 6
1 parent a237f60 commit 22bcd4e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/docker/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ RUN apt-get update && \
3535
apt-get clean && \
3636
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
3737
# https://xdebug.org/docs/compat \
38-
&& if [ "$BUILD_PHP_VERSION" = "8.2" || "$BUILD_PHP_VERSION" = "8.3" ] ; then pecl install xdebug ; else pecl install xdebug-3.1.5 ; fi \
38+
&& if [ "$BUILD_PHP_VERSION" = "8.2" ] ; then pecl install xdebug ; else pecl install xdebug-3.1.5 ; fi \
39+
&& if [ "$BUILD_PHP_VERSION" = "8.3" ] ; then pecl install xdebug ; else pecl install xdebug-3.1.5 ; fi \
3940
&& docker-php-ext-enable xdebug \
4041
&& docker-php-ext-install \
4142
zip \

0 commit comments

Comments
 (0)