michaelgooden / mdg-money-doctrine
Doctrine Types and Embeddables for the PHP implementation of Fowler's Money pattern.
Package info
github.com/MichaelGooden/mdg-money-doctrine
pkg:composer/michaelgooden/mdg-money-doctrine
0.4.3
2024-10-14 14:54 UTC
Requires
- doctrine/dbal: ^3.0 || ^4.0
- moneyphp/money: ^3.0 || ^4.0
This package is auto-updated.
Last update: 2026-03-14 18:03:48 UTC
README
Include the custom Currency type into your Doctrine configuration.
Point a XML mapping driver to the vendor/michaelgooden/mdg-money-doctrine/config/orm/Money.Money.dcm.xml file to being using \Money\Money as an embeddable:
/** * @ORM\Embedded(class="Money\Money") */ private $total; /** * @ORM\Embedded(class="Money\Money") */ private $tax;