Skip to content

Commit 9f9cdc8

Browse files
committed
build: test with PHP 8.4.5RC1 due to memory issues
1 parent 2cb97ed commit 9f9cdc8

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

Diff for: .docker/apache/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#####################################
77
#=== Unique stage without payload ===
88
#####################################
9-
FROM php:8.4-apache
9+
FROM php:8.4.5RC1-apache
1010

1111
#=== Install gd PHP dependencie ===
1212
RUN set -x \
@@ -58,7 +58,7 @@ RUN set -ex \
5858
&& rm -rf /var/lib/apt/lists/*
5959

6060
#=== Install xdebug PHP dependencies ===
61-
RUN pecl install xdebug-3.4.0 \
61+
RUN pecl install xdebug-3.4.1 \
6262
&& docker-php-ext-enable xdebug
6363

6464
#=== php default ===

Diff for: .docker/php-fpm/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#####################################
77
#=== Unique stage without payload ===
88
#####################################
9-
FROM php:8.4-fpm
9+
FROM php:8.4.5RC1-fpm
1010

1111
#=== Install gd PHP dependencies ===
1212
RUN set -x \

Diff for: phpmyfaq/faq.php

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
*/
1818

1919
use League\CommonMark\Environment\Environment;
20-
use League\CommonMark\Exception\CommonMarkException;
2120
use League\CommonMark\Extension\CommonMark\CommonMarkCoreExtension;
2221
use League\CommonMark\Extension\GithubFlavoredMarkdownExtension;
2322
use League\CommonMark\MarkdownConverter;

0 commit comments

Comments
 (0)