Skip to content

Commit 27d9f11

Browse files
committed
Enable back php-solr now that 2.7.0 supports php83
Solr 2.7.0 has come with support for PHP 8.3: https://github.com/php/pecl-search_engine-solr/releases/tag/2.7.0 So, enabling it back.
1 parent 0e874e7 commit 27d9f11

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

root/tmp/setup/php-extensions.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,8 @@ docker-php-ext-configure ldap
5858
docker-php-ext-install -j$(nproc) ldap
5959

6060
# APCu, igbinary, Memcached, PCov, Redis, Solr, timezonedb, uuid
61-
# Note: Missing as of 2023-06-17: solr
62-
pecl install apcu igbinary memcached pcov timezonedb uuid
63-
docker-php-ext-enable apcu igbinary memcached pcov timezonedb uuid
61+
pecl install apcu igbinary memcached pcov solr timezonedb uuid
62+
docker-php-ext-enable apcu igbinary memcached pcov solr timezonedb uuid
6463

6564
echo 'apc.enable_cli = On' >> /usr/local/etc/php/conf.d/10-docker-php-ext-apcu.ini
6665

tests/fixtures/test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
'redis',
1515
'soap',
1616
'sodium',
17-
//'solr', -- Missing as of 2023-06-17.
17+
'solr',
1818
'sqlsrv',
1919
'uuid',
2020
'xsl',

0 commit comments

Comments
 (0)