mojoblanco/rits
Composer 安装命令:
composer require mojoblanco/rits
包简介
README 文档
README
A Laravel Package for Remita Interbank Transfer Service
Prerequisites
- Register as a merchant/biller on the Remita platform.
- Get your credentials from Remita such as Merchant ID, API Key etc.
Installation
Open your terminal or command prompt, go to the root directory of your Laravel project, then run the following command
composer require mojoblanco/rits
Usage
Setup Credentials
To use any of the available services, you need to set up your credentials first
use Mojoblanco\RITS\Models\Credential; $credentials = Credential(); $credentials->merchantId = $merchantId; $credentials->apiKey = $apiKey; $credentials->apiToken = $apiToken; $credentials->key = $key; $credentials->iv = $iv; $credentials->environment = 'DEMO'; //Can either be LIVE or DEMO
Available Services
Bulk Payment
use Mojoblanco\RITS\RITSService; use Mojoblanco\RITS\Models\BulkBeneficiary; // Build the list of your beneficiaries $beneficiaries = []; for ($i = 0; $i < 10; $i++) { $bb = new BulkBeneficiary($iv, $key); $bb->amount = 100; $bb->accountNumber = '0582915208015'; $bb->bankCode = '058'; $bb->email = 'test@mail.com'; $bb->narration = 'Test payment'; $bb->transRef = rand(); // Make sure it is something you can track. array_push($beneficiaries, $bb); } // Call the bulk payment service $bp = new BulkPayment($iv, $key); $bp->batchRef = '12345678987654321'; $bp->debitAccount = '1234565678' $bp->bankCode = '044' $bp->narration = 'Test bulk payment' $bp->beneficiaries = $beneficiaries; $service = new RITSService($credentials); $response = $service->makeBulkPayment($bp);
Bulk Payment Status
use Mojoblanco\RITS\RITSService; use Mojoblanco\RITS\Models\PaymentStatus; $ps = new PaymentStatus($iv, $key); $ps->reference = $reference; $service = new RITSService($credentials); $response = $service->getBulkPaymentStatus($ps);
How can you thank me?
You can like this repo, follow me on github and twitter
Thanks. 🙂
mojoblanco/rits 适用场景与选型建议
mojoblanco/rits 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 37 次下载、GitHub Stars 达 3, 最近一次更新时间为 2019 年 11 月 04 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 mojoblanco/rits 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 mojoblanco/rits 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 37
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-11-04