We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
redis
1 parent 284de9a commit b152028Copy full SHA for b152028
2 files changed
php-85/Dockerfile
@@ -178,7 +178,8 @@ RUN set -xe; \
178
# Install extensions
179
# We can install extensions manually or using `pecl`
180
RUN pecl install APCu
181
-RUN pecl install redis-6.2.0
+# TODO not available for PHP 8.5 yet
182
+#RUN pecl install redis-6.2.0
183
184
185
# ---------------------------------------------------------------
tests/test_3_manual_enabling_extensions.php
@@ -6,7 +6,8 @@
6
'intl' => class_exists(\Collator::class),
7
'apcu' => function_exists('apcu_add'),
8
'soap' => class_exists(\SoapClient::class),
9
- 'redis' => class_exists(\Redis::class),
+ // TODO redis is not available on PHP 8.5 yet
10
+ 'redis' => PHP_VERSION_ID >= 80500 ? true : class_exists(\Redis::class),
11
];
12
13
$extensionDir = ini_get('extension_dir');
0 commit comments