Brick\Money
A money and currency library for PHP (by brick)
Money
PHP implementation of Fowler's Money pattern. (by moneyphp)
Brick\Money | Money | |
---|---|---|
15 | 19 | |
1,769 | 4,756 | |
0.3% | 0.2% | |
6.2 | 7.1 | |
4 months ago | about 1 month ago | |
PHP | PHP | |
MIT License | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Brick\Money
Posts with mentions or reviews of Brick\Money.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-05-18.
-
Introducing Bag 1.0: Immutable Values Objects for PHP
For the last couple of years I’ve been using Value Objects in my projects to bring language-level strict types to what would typically be array data structures in my code. From method inputs to JSON API responses, value objects have almost entirely replaced arrays throughout. The ability to get runtime type checking and IDE auto-complete has eliminated many potential bugs, from key typos, to assigning an incorrectly typed value by accident: what type is an “amount” property in a credit card transaction API response? An integer of cents (or other minor units), a Money object such as brick/money or moneyphp/money? Or worst of all, a float?
-
PHP libraries and tools
brick/money: A money and currency library for PHP
-
Weekly help thread
1 - Floating point is not always great for money operations and can introduce odd rounding errors - https://www.php.net/manual/en/language.types.float.php - you might want to use something like this: https://github.com/brick/money
-
PHP is trolling me
He should have said to use Brick/Money https://github.com/brick/money which is based on Brick/Math but is specifically money related.
-
How to format prices?
If you don’t want to do the integer conversions yourself, I highly recommend looking at: https://github.com/brick/money
-
Which native PHP features do you regret not knowing about/adapting earlier?
brick/date-time is great! I personally prefer its interface and functionality over Carbon's. I also really like his money library
- Financial values in PHP
-
Best way to handle PHP float issue
Is the most popular, but https://github.com/brick/money is preferrable IMO. One of the reasons is that it handles not just money, but all arbitrary precision calculations independent of currecy via brick/math.
- Dealing with money
- Weekly "ask anything" thread
Money
Posts with mentions or reviews of Money.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-05-18.
-
Introducing Bag 1.0: Immutable Values Objects for PHP
For the last couple of years I’ve been using Value Objects in my projects to bring language-level strict types to what would typically be array data structures in my code. From method inputs to JSON API responses, value objects have almost entirely replaced arrays throughout. The ability to get runtime type checking and IDE auto-complete has eliminated many potential bugs, from key typos, to assigning an incorrectly typed value by accident: what type is an “amount” property in a credit card transaction API response? An integer of cents (or other minor units), a Money object such as brick/money or moneyphp/money? Or worst of all, a float?
-
PHP libraries and tools
moneyphp: PHP implementation of Fowler's Money pattern
-
PHP is trolling me
There's also https://github.com/moneyphp/money, which is great.
-
Why should you not compare floats directly for equality?
Or you can use MoneyPHP, which uses BCMath, and it takes care of all of your problems.
-
Library for discounts calculator
Instead, you want to use a Money object of some sort instead; e.g. https://github.com/moneyphp/money.
-
Should I store the total price of an order or re-calculate it on-demand every time?
Yeah I usually use moneyphp for this
-
Need Guidance for my Passionate Ecommerce Project
https://github.com/moneyphp/money to handle money
-
A GitHub Workflow to Check the Compatibility of Your PHP Package with a Range of Dependency Versions
With that in place, let's talk about our test project for a minute. We are going to build a small library on top of Money, a popular PHP package facilitating the manipulation of monetary values and currencies.
-
Need help with decimal and float type in Laravel API.
In addition to the essential advice above to use Integers of the lowest denomination to store prices, you can also look into using a library to help with all the money math, conversions, comparisons etc https://github.com/moneyphp/money
-
Financial values in PHP
Read the readme from moneyphp: https://github.com/moneyphp/money
What are some alternatives?
When comparing Brick\Money and Money you can also consider the following projects:
Brick\Money - A money and currency library for PHP
biller
Laravel - The Laravel Framework.
OmniPay - A framework agnostic, multi-gateway payment processing library for PHP 5.6+
laravel-money - Currency formatting and conversion package for Laravel
Sebastian Money