Skip to content

Commit

Permalink
Update the PHP extensions docs: imagick is not enabled by default
Browse files Browse the repository at this point in the history
  • Loading branch information
mnapoli committed Oct 30, 2019
1 parent 06390d0 commit 08e74bc
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions docs/environment/php.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,11 @@ Bref strives to include the most common PHP extensions. If a major PHP extension
<li><a href="http://php.net/manual/en/book.gettext.php">gettext</a></li>
<li><a href="http://php.net/manual/en/book.hash.php">hash</a></li>
<li><a href="http://php.net/manual/en/book.iconv.php">iconv</a></li>
<li><a href="http://php.net/manual/en/book.imagick.php">imagick</a></li>
<li><a href="http://php.net/manual/en/book.json.php">json</a></li>
</ul>
</td>
<td align="left" valign="top">
<ul>
<li><a href="http://php.net/manual/en/book.json.php">json</a></li>
<li><a href="http://php.net/manual/en/book.libxml.php">libxml</a></li>
<li><a href="http://php.net/manual/en/book.mbstring.php">mbstring</a></li>
<li><a href="http://php.net/manual/en/book.mysqli.php">mysqli</a></li>
Expand All @@ -79,11 +78,11 @@ Bref strives to include the most common PHP extensions. If a major PHP extension
<li><a href="http://php.net/manual/en/book.Phar.php">Phar</a></li>
<li><a href="http://php.net/manual/en/book.posix.php">posix</a></li>
<li><a href="http://php.net/manual/en/book.readline.php">readline</a></li>
<li><a href="http://php.net/manual/en/book.Reflection.php">Reflection</a></li>
</ul>
</td>
<td align="left" valign="top">
<ul>
<li><a href="http://php.net/manual/en/book.Reflection.php">Reflection</a></li>
<li><a href="http://php.net/manual/en/book.session.php">session</a></li>
<li><a href="http://php.net/manual/en/book.SimpleXML.php">SimpleXML</a></li>
<li><a href="http://php.net/manual/en/book.sodium.php">sodium</a></li>
Expand All @@ -97,10 +96,6 @@ Bref strives to include the most common PHP extensions. If a major PHP extension
<li><a href="http://php.net/manual/en/book.xmlreader.php">xmlreader</a></li>
<li><a href="http://php.net/manual/en/book.xmlwriter.php">xmlwriter</a></li>
<li><a href="http://php.net/manual/en/book.xsl.php">xsl</a></li>
</ul>
</td>
<td align="left" valign="top">
<ul>
<li><a href="http://php.net/manual/en/book.zlib.php">zlib</a></li>
</ul>
</td>
Expand All @@ -117,6 +112,7 @@ Bref strives to include the most common PHP extensions. If a major PHP extension
- **[MySQL PDO Driver](http://php.net/manual/en/ref.pdo-mysql.php)** - PDO_MYSQL is a driver that implements the PHP Data Objects (PDO) interface to enable access from PHP to MySQL databases.
- **[Mongodb](http://php.net/manual/en/set.mongodb.php)** - Unlike the mongo extension, this extension is developed atop the » libmongoc and » libbson libraries. It provides a minimal API for core driver functionality: commands, queries, writes, connection management, and BSON serialization.
- **[pthreads](http://php.net/manual/en/book.pthreads.php)** - pthreads is an object-orientated API that provides all of the tools needed for multi-threading in PHP. PHP applications can create, read, write, execute and synchronize with Threads, Workers and Threaded objects.
- **[imagick](http://php.net/manual/en/book.imagick.php)** - imagick is an image processing library.

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

Expand All @@ -128,6 +124,7 @@ extension=pdo_pgsql
extension=pdo_mysql
extension=mongodb
extension=pthreads
extension=imagick
```

### Custom extensions
Expand Down

0 comments on commit 08e74bc

Please sign in to comment.