Skip to content

bussnet/money

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code
This branch is 13 commits ahead, 750 commits behind moneyphp:master.

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
doc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Money

PHP 5.3+ library to make working with money safer, easier, and fun!

This is a fork of Mathias Verraes' Money Library, extended with:

  • add CurrencyLookup, for different currency sources (example for json-file included)
  • extended List of currencies with settings (decimal_mark, subunit_factor, symbols, iso_code etc) from great RubyMoney (ISO 4217)
  • add format method for formating the Money-string
<?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 (before the fork) is available at http://money.readthedocs.org

Installation

Install the library using composer. Add the following to your composer.json:

{
    "require": {
        "bnnet/bnmoney": "~1.0"
    }
}

Now run the install command.

$ composer.phar install

Integration

See MoneyBundle for Symfony integration (only before the fork).

Packages

No packages published

Languages

  • PHP 100.0%