kkiapay/kkiapay-php
Composer 安装命令:
composer require kkiapay/kkiapay-php
包简介
Php sdk for kkiapay payment gateway
README 文档
README
Raw Files
git clone https://github.com/kkiapay/php-sdk.git
Installing
Using composer:
composer require kkiapay/kkiapay-php
Initialization
Production
$kkiapay = new \Kkiapay\Kkiapay($public_key, $private_key, $secret);
Sandbox
$kkiapay = new \Kkiapay\Kkiapay($public_key, $private_key, $secret, $sandbox = true);
Request to retrieve transactions
EXAMPLE
$kkiapay->verifyTransaction($transaction_id);
Request to revert transaction
EXAMPLE
$kkiapay->refundTransaction($transaction_id);
Request to schedule payout
EXAMPLE
// Example to schedule payout when amount reaches a ceiling
$kkiapay->setupPayout(array( "algorithm" => "roof", "send_notification" => true,
"destination_type" => "MOBILE_MONEY", "roof_amount" => "1000",
"destination" => "22997000000" ));
// Example to schedule payout by frequency
$kkiapay->setupPayout(array( "algorithm" => "rate", "send_notification" => true,
"destination_type" => "MOBILE_MONEY", "rate_frequency" => "1m",
"destination" => "22997000000" ));
| PARAMETERS | DESCRIPTION |
|---|---|
| algorithm | (String) "roof" if the amount reaches a ceiling or "rate" for refund by frequency. |
| send_nofitication | (Boolean) to receive a notification after payment. |
| destination_type | (String) "BANK_ACCOUNT" or "MOBILE_MONEY" |
| destination | (String) the bank number or phone number of the receiver of the refund |
| rate_frequency | (String) "1m", "1w", "3j" Refund frequency when choosing "rate" algorithm |
| roof_amount | (String) Refund amount when choosing "roof" algorithm |
COMPLETE POSSIBLE STATUS LIST
| STATUS | DESCRIPTION |
|---|---|
| SUCCESS | Successful transaction |
| FAILED | Transaction failed |
| INSUFFICIENT_FUND | Not enough money in developper account |
| TRANSACTION_NOT_ELIGIBLE | This transaction are already reverted or are not eligible |
| TRANSACTION_NOT_FOUND | Transaction not found |
| INVALID_TRANSACTION | You are not owner of this transaction |
| INVALID_TRANSACTION_TYPE | We can't revert this transaction |
| INVALID_PAYOUT_DESTINATION_ACCOUNT | Provided destination account is not valid mobile money account |
kkiapay/kkiapay-php 适用场景与选型建议
kkiapay/kkiapay-php 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 28.75k 次下载、GitHub Stars 达 6, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 kkiapay/kkiapay-php 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 kkiapay/kkiapay-php 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 28.75k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 9
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 未知