Add PHP Decimal extension support

This commit is contained in:
Patrick Kivits
2021-01-27 08:24:44 +01:00
parent 29f3d6a671
commit ed649993ca
5 changed files with 51 additions and 0 deletions

View File

@ -2291,6 +2291,20 @@ AST exposes the abstract syntax tree generated by PHP 7+. This extension is requ
**Note** If you need a specific version of AST then search for the `WORKSPACE_AST_VERSION` argument under the Workspace Container and set it to the desired version and continue step 4.
<br>
<a name="Install-PHP-Decimal"></a>
## Install PHP Decimal extension
The PHP Decimal extension adds support for correctly-rounded, arbitrary-precision decimal floating point arithmetic. Applications that rely on accurate numbers (ie. money, measurements, or mathematics) can use Decimal instead of float or string to represent numerical values.
For more information visit the [PHP Decimal website](https://php-decimal.io).
2 - Search for the `WORKSPACE_INSTALL_PHPDECIMAL` argument under the Workspace Container
2 - Search for the `PHP_FPM_INSTALL_PHPDECIMAL` argument under the PHP-FPM container
3 - Set it to `true`
4 - Re-build the container `docker-compose build workspace php-fpm`
<br>