onubrooks/glade-pay
Composer 安装命令:
composer require onubrooks/glade-pay
包简介
A small PHP library/package that uses the Glade API to make payments using bank transfer option.
README 文档
README
A small PHP library/package that uses the Glade API to make payments using the bank transfer option.
Getting Started
You need to have PHP and composer installed on your machine to use this package. The latest versions of both are recommended.
Installation
You can clone this project and include the class in your project or add the dependency in your composer.json file as in the example below:
{
"require": {
"onubrooks/glade-pay": "^1.0.0"
}
}
Or run the following command in your project:
composer require onubrooks/glade-pay
Usage
Instantiate the GladePay Class:
require_once __DIR__ . '/vendor/autoload.php'; use onubrooks\GladePay\GladePay; $glade = new GladePay();
Pay Using Bank Transfer
$amount = 30000; $user_data = ' { "firstname":"John", "lastname":"Wick", "email":"wick@gladeuniverse.com", "ip":"192.168.10.5", "fingerprint": "cccvxbxbxbc" } '; $business_name = "Happy Glade Customer"; $user = json_decode($user_data); //Initiate a bank transfer Transaction, country and currency are optional and defaults to 'NG' and 'NGN' // user and business_name are also optional $transaction = $glade->bankTransfer($amount, $user, $business_name); //After the transaction is completed, verify to confirm final status. $verification = $glade->verify("GP61548131820210220X");
Return Values
All methods return an array.
Below are the fields returned in the array from the bankTransfer method with sample return values:
{
"status": 202,
"txnRef": "GP61548131820210220X",
"auth_type": "device",
"accountNumber": "9922554842",
"accountName": "GladePay Demo",
"bankName": "Providus Bank",
"accountExpires": 600,
"message": "Make a transfer into the following account using your bank app or internet banking platfrom to complete the transaction"
}
For the verify method, here's a sample of the returned values in the array:
{
"status": 200,
"txnStatus": "pending",
"txnRef": "GP9225324020210220G",
"message": "PENDING",
"chargedAmount": 0,
"currency": "NGN",
"payment_method": "bank_transfer",
"fullname": "John Wick",
"email": "wick@gladeuniverse.com",
"bank_message": "Awaiting Validation"
}
Running Tests
The test cases can be run using the following command on windows command line:
php vendor/phpunit/phpunit/phpunit --bootstrap vendor/autoload.php tests
For bash users, use the following command:
php vendor/bin/phpunit --bootstrap vendor/autoload.php tests
Find other repos by the same author at this github profile.
onubrooks/glade-pay 适用场景与选型建议
onubrooks/glade-pay 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 11 次下载、GitHub Stars 达 1, 最近一次更新时间为 2021 年 02 月 19 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 onubrooks/glade-pay 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 onubrooks/glade-pay 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 11
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 11
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-02-19