lubo13/money-bridge-bundle
Composer 安装命令:
composer require lubo13/money-bridge-bundle
包简介
Symfony Bridge Bundle for moneyphp/money library
README 文档
README
The aims of this bridge bundle are:
Simple Symfony Bridge Bundle for moneyphp/money library useful for integration with Api Platform. If you need more complex bundle with Symfony form integration, Twig filters and etc. look at -> tbbc/money-bundle package
- Compatibility with Doctrine - Money\Money and Money\Currency are mapped to be used as Embeddables classes
- Mapped with Symfony Serializer groups - there are 2 groups per class, for input and output. (money:output, money:input, currency:output, currency:input)
- Mapped with Validator constraint - Moneys' amount property is mapped with NotBlank and with custom Amount constraint (there is the possibility to change behaviour - amount to be only positive or positive_and_zero). Currency is mapped with Currency constraint and Currencies' code property is mapped with custom CurrencyCodeChoice constraint (there is the possibility to change allowed Currencies' codes)
Requirements
PHP 7.4+; Symfony 4.4+; moneyphp/money 3.3+
Install
Via Composer
$ composer require lubo13/money-bridge-bundle
Bundle should be auto enabled, just check and if not add it to config/bundles.php
Money\Bridge\MoneyBridgeBundle::class => ['all' => true],
Usage
By default, bundles come with preconfigured options that you can change in your favour.
To change some of the preconfigured options create money_bridge.yaml file in config/packages with the following content:
money_bridge: integer_part: 12 # How many digits will you have before the dot -> 1234. fractional_part: !php/const Money\Bridge\Util\AmountFormatter::MONEY_FRACTIONAL_PART # How many digits will you have after the dot -> .00 default_currency_code: 'EUR' # With this option you can control default currency (useful with usage of Serializer or [Api Platform](https://api-platform.com/)). allowed_currency_code: [ 'EUR' ] # With this option you can control allowed currency when the Currency is validated. amount_validation_rule: positive # There are two option positive or positive_or_zero. With this option, you can control input data on Deserialization process. (useful with usage of Serializer or [Api Platform](https://api-platform.com/))
To use Money and Currency library as embeddables classes:
/**
* @ORM\Embedded(class="Money\Money")
*/
private Money $price;
or
/**
* @ORM\Embedded(class="Money\Money")
*/
private $price;
Also if you write your migration manual you need to add the two new columns to your table:
$this->addSql('ALTER TABLE YOUR_TABLE_NAME ADD price_amount BIGINT DEFAULT NULL'); $this->addSql('ALTER TABLE YOUR_TABLE_NAME ADD price_currency_code VARCHAR(3) NULL');
To allow property of Money and Currency to be serialized and deserialized properly in your favour you can use the following groups:
For deserialize:
money:input -> Moneys' amount property
currency:input -> for Currencies' code property
For serialize:
money:output -> Moneys' amount property
currency:output -> for Currencies' code property
Format price amount somewhere in your app to be compatible with Money library:
\Money\Bridge\Util\AmountFormatter::getAmountWithoutFractional('100.99', 2);
License
The MIT License (MIT). Please see License File for more information.
lubo13/money-bridge-bundle 适用场景与选型建议
lubo13/money-bridge-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 14 次下载、GitHub Stars 达 2, 最近一次更新时间为 2020 年 12 月 26 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「symfony」 「php」 「money」 「moneyphp」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 lubo13/money-bridge-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 lubo13/money-bridge-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 lubo13/money-bridge-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Beyonic PHP Library
The bundle for easy using json-rpc api on your project
Bundle Symfony DaplosBundle
The Payum Yandex Money gateway
Alfabank REST API integration
Handles currency for Laravel 5.8
统计信息
- 总下载量: 14
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 5
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-12-26