Skip to content

Commit

Permalink
Enable back php-solr now that 2.7.0 supports php83
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
stronk7 committed Jan 27, 2024
1 parent 08029d5 commit 5a7e776
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions root/tmp/setup/php-extensions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,8 @@ docker-php-ext-configure ldap
docker-php-ext-install -j$(nproc) ldap

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

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

Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/test.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
'redis',
'soap',
'sodium',
//'solr', -- Missing as of 2023-06-17.
'solr',
'sqlsrv',
'uuid',
'xsl',
Expand Down

0 comments on commit 5a7e776

Please sign in to comment.