Skip to content

Commit f5f8664

Browse files
authored
Update README.md
1 parent 1e9671c commit f5f8664

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@ var_dump(0.1 + 0.2 - 0.3); // float(5.5511151231258E-17)
2020
Handling them as string is a workaround, but as value object you can more easily encapsulate some of the logic.
2121

2222
### Alternatives
23-
Solutions like [php-decimal](https://php-decimal.github.io/#introduction) require a PHP extension (would make it faster, but also more difficult for some
24-
servers to be available). For details see the [wiki](https://github.com/php-collective/decimal-object/wiki).
23+
Solutions like [php-decimal](https://php-decimal.github.io/#introduction) require a custom PHP extension (would make it faster, but also more difficult for some
24+
servers to be available).
25+
Monetary values themselves one could be handled also with [brick/money](https://github.com/brick/money) or [moneyphp/money](https://github.com/moneyphp/money).
2526

26-
For monetary values itself one could look into [brick/money](https://github.com/brick/money) or [moneyphp/money](https://github.com/moneyphp/money).
27+
For details see the [wiki](https://github.com/php-collective/decimal-object/wiki).
2728

2829
Note: If you are looking for pre 8.1 versions, check out legacy library (https://github.com/spryker/decimal-object).
2930

0 commit comments

Comments
 (0)