money icon indicating copy to clipboard operation
money copied to clipboard

PHP implementation of Fowler's Money pattern.

Results 24 money issues
Sort by recently updated
recently updated
newest added

When trying to parse S$10.00 We receive this error Upon investigation it appears to fail on line 49 on the IntlMoneyParser.php because the PHP NumberFormatter returns false i.e. its unable...

For example I want to see CAD to 8 decimal places, and calculate at that precision too. Is this possible with moneyphp?

Hey, forgive me if this is a dummy question. I might be missing something totally obvious. But I was asking myself, why the argument for the [`mod` method](https://github.com/moneyphp/money/blob/2fa15bbdfafe9be39ff57e4d3c64a18add719f73/src/Money.php#L275) is of...

The magic methods ``` * @method static Money AED(string|int $amount) * @method static Money ALL(string|int $amount) * @method static Money AMD(string|int $amount) * @method static Money ANG(string|int $amount) * @method...

Adds `PreciseMoney`. Fixes #7.

This is identical to #520 but caught up with master.

Hi -- in my legacy refactoring work, I have found it useful to introduce a Teller (as in "bank teller") object to ease the transition from float math to Money...