Skip to content

Commit 6baa763

Browse files
authored
Merge pull request #2000 from brefphp/v3-document-extension-changes
Document extension changes for Bref v3
2 parents d902f2d + 8596f37 commit 6baa763

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

docs/environment/php.mdx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ The following extensions are installed and enabled by default in Bref runtimes:
7373
<li><a className="underline" href="https://www.php.net/manual/en/book.pdo.php">PDO</a></li>
7474
<li><a className="underline" href="https://www.php.net/manual/en/ref.pdo-sqlite.php">pdo_sqlite</a></li>
7575
<li><a className="underline" href="https://www.php.net/manual/en/ref.pdo-mysql.php">pdo_mysql</a></li>
76+
<li><a className="underline" href="https://www.php.net/manual/en/ref.pdo-pgsql.php">pdo_pgsql</a></li>
7677
<li><a className="underline" href="https://www.php.net/manual/en/book.phar.php">Phar</a></li>
7778
<li><a className="underline" href="https://www.php.net/manual/en/book.posix.php">posix</a></li>
7879
<li><a className="underline" href="https://www.php.net/manual/en/book.readline.php">readline</a></li>
@@ -98,14 +99,16 @@ The following extensions are installed in Bref runtimes, but disabled by default
9899

99100
- **[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.
100101
- **[APCu](https://www.php.net/manual/en/intro.apcu.php)** - APCu is APC stripped of opcode caching.
101-
- **[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.
102+
- **[Redis](https://github.com/phpredis/phpredis)** - A PHP extension for interfacing with Redis.
103+
- **[soap](https://www.php.net/manual/en/book.soap.php)** - SOAP client and server for PHP
102104

103105
You can enable these extensions by loading them in `php/conf.d/php.ini` (as mentioned in [the section above](#phpini)), for example:
104106

105107
```ini filename="php/conf.d/php.ini"
106108
extension=intl
107109
extension=apcu
108-
extension=pdo_pgsql
110+
extension=redis
111+
extension=soap
109112
```
110113

111114
### Extra extensions

0 commit comments

Comments
 (0)