money

PHP implementation of Fowler's Money pattern.

Github星跟蹤圖

Money

Latest Version
GitHub Workflow Status
Total Downloads

Email

Money PHP

PHP 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. Since version
3.0 this library uses strings internally
in order to support unlimited integers.

<?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://moneyphp.org

Requirements

PHP 5.6+. Other than that, this library has no external requirements. MoneyPHP will not provide any support to
PHP versions that are not supported by the language itself. There might be
additional dependencies for specific feature, e.g. the Swap exchange implementation, check the documentation for more information.

Install

Via Composer

$ composer require moneyphp/money

Features

  • JSON Serialization
  • Big integer support utilizing different, transparent calculation logic upon availability (bcmath, gmp, plain php)
  • Money formatting (including intl formatter)
  • Currency repositories (ISO currencies included)
  • Money exchange (including Swap implementation)

Documentation

Please see the official documentation.

Testing

We try to follow BDD and TDD, as such we use both phpspec and phpunit to test this library.

$ composer test

Running the tests in Docker

Money requires a set of dependencies, so you might want to run it in Docker.

First, build the image locally:

$ docker build -t moneyphp .

Then run the tests:

$ docker run --rm -it -v $PWD:/app -w /app moneyphp vendor/bin/phpunit --exclude-group segmentation

Contributing

We would love to see you helping us to make this library better and better.
Please keep in mind we do not use suffixes and prefixes in class names,
so not CurrenciesInterface, but Currencies. Other than that, Style CI will help you
using the same code style as we are using. Please provide tests when creating a PR and clear descriptions of bugs when filing issues.

Security

If you discover any security related issues, please contact us at team@moneyphp.org.

License

The MIT License (MIT). Please see License File for more information.

Acknowledgements

This library is heavily inspired by Martin Fowler's Money pattern.
A special remark goes to Mathias Verraes, without his contributions,
in code and via his blog, this library would not be where it stands now.

概覽

名稱與所有者moneyphp/money
主編程語言PHP
編程語言PHP (語言數: 3)
平台
許可證MIT License
發布數43
最新版本名稱v4.5.0 (發布於 )
第一版名稱1.0.0 (發布於 )
創建於2011-03-29 22:58:09
推送於2024-02-15 19:48:30
最后一次提交2024-02-15 20:47:21
星數4.5k
關注者數91
派生數436
提交數870
已啟用問題?
問題數331
打開的問題數2
拉請求數285
打開的拉請求數3
關閉的拉請求數167
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?
去到頂部