From 8596f373c34e8726b701d8b2383d2e2542af7520 Mon Sep 17 00:00:00 2001 From: Matthieu Napoli Date: Fri, 12 Sep 2025 18:20:08 +0200 Subject: [PATCH] Document extension changes for Bref v3 --- docs/environment/php.mdx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/environment/php.mdx b/docs/environment/php.mdx index 035a8aaec..3c2295656 100644 --- a/docs/environment/php.mdx +++ b/docs/environment/php.mdx @@ -73,6 +73,7 @@ The following extensions are installed and enabled by default in Bref runtimes:
  • PDO
  • pdo_sqlite
  • pdo_mysql
  • +
  • pdo_pgsql
  • Phar
  • posix
  • readline
  • @@ -98,14 +99,16 @@ The following extensions are installed in Bref runtimes, but disabled by default - **[intl](https://www.php.net/manual/en/intro.intl.php)** - Internationalization extension (referred as Intl) is a wrapper for ICU library, enabling PHP programmers to perform various locale-aware operations. - **[APCu](https://www.php.net/manual/en/intro.apcu.php)** - APCu is APC stripped of opcode caching. -- **[PostgreSQL PDO Driver](https://www.php.net/manual/en/ref.pdo-pgsql.php)** - PDO_PGSQL is a driver that implements the PHP Data Objects (PDO) interface to enable access from PHP to PostgreSQL databases. +- **[Redis](https://github.com/phpredis/phpredis)** - A PHP extension for interfacing with Redis. +- **[soap](https://www.php.net/manual/en/book.soap.php)** - SOAP client and server for PHP You can enable these extensions by loading them in `php/conf.d/php.ini` (as mentioned in [the section above](#phpini)), for example: ```ini filename="php/conf.d/php.ini" extension=intl extension=apcu -extension=pdo_pgsql +extension=redis +extension=soap ``` ### Extra extensions