dioscouri / f3-money
PHP implementation of Fowler's Money pattern
Installs: 27
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 6
Forks: 1
Open Issues: 0
Type:component
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2024-11-09 16:27:14 UTC
README
This repo is heavily copied, and modified from https://github.com/mathiasverraes/money and https://github.com/99designs/money-php
PHP 5.5+ library to make working with money safer, easier, and fun!
"If I had a dime for every time I've seen someone use FLOAT to store currency, I'd have $999.997634" -- Bill Karwin
In short: You shouldn't represent monetary values by a float. Wherever you need to represent money, use this Money value object.
<?php use Money\Money; $fiveEur = Money::EUR(500); $tenEur = $fiveEur->add($fiveEur); list($part1, $part2, $part3) = $tenEur->allocate(array(1, 1, 1)); assert($part1->equals(Money::EUR(334))); assert($part2->equals(Money::EUR(333))); assert($part3->equals(Money::EUR(333)));
The documentation is available at http://money.readthedocs.org
Installation
Install the library using [composer][1]. Add the following to your composer.json
:
{ "require": { "dioscouri/f3-money": "dev-master" }, "minimum-stability": "dev" }
Now run the install
command.
$ composer.phar install