moneybatch/minimalist

Moneybatch Minimalist

1.0.0 2021-11-02 16:51 UTC

This package is auto-updated.

Last update: 2024-05-09 16:47:40 UTC


README

Working with one currency? Need easy, affective and stable way to work with Money? Pick the Minimalist.

Installation

composer require moneybatch/minimalist

Usage

  1. Make some money: $money = new Money(100)

  2. Add more money: $money->add(new Money(500))

  3. Multiply that: $money->multiplyBy(2)

  4. Calculate 10% $money->percent(10)->get()

  5. Get in Units $money->inUnits()

All together: Money::fromSubunits(1000)->add(Money::fromUnits(5))->multiplyBy(2)->percent(10)->get()->inUnits() will result in 3.0 Units.