tarikhagustia/epayindo
Composer 安装命令:
composer require tarikhagustia/epayindo
包简介
PHP client library for epayindo http://epayindo.com
README 文档
README
Epayindo ❤️ PHP!
This is warapper/Library for epayindo (http://epayindo.com) payment gateway, for more information visit documentation page (https://documenter.getpostman.com/view/263410/RWEnoc52#0eb2f98c-2fb1-49a6-89dd-415626c28c74)
1. Installation
1. Composer Installation
composer require tarikhagustia/epayindo "dev-master"
2. How to Use
2.1 Create Payment
$auth = new Auth('MERCHANT_EMAIL', 'MERCHANT_API_KEY'); $payment = new Payment($auth); $total_amount = 45000; $payment_data = $payment->createPayment('MERCHANT_USERNAME', 'CLIENT_EMAIL', $total_amount, [ ['name', 45000,1,45000] ]); print_r($payment_data); // for third parameter using this scema // ['product_name', 'product_price', 'qty', 'total_amount'] // $paymetn_data will return this following object // stdClass Object // ( // [status] => 1 // [url] => https://my.epayindo.com/payment/pay/B972E201809301024 // [data] => stdClass Object // ( // [transaction] => stdClass Object // ( // [pin] => pgcometsnet12345 // [merchant_id] => pgcometsnet // [transaction_id] => B972E201809301024 // [account_number] => 1 // [item_type] => MISC // // [basket] => name,45000,1,45000;Fee,6500,1,6500 // [actype] => pay // ) // // [gross_amount] => 51500 // ) // // )
2.1 Transfer to other epayindo accounts
<?php require __DIR__ . '/../vendor/autoload.php'; use Epayindo\Auth; use Epayindo\Transfer; $auth = new Auth('MERCHANT_EMAIL', 'MERCHANT_API_KEY'); $transfer = new Transfer($auth); $amount = 10; $res = $transfer->to('MERCHANT_RECEIVER_USERNAME', $amount, 'Note Example')->send(); print_r($res); // stdClass Object // ( // [message] => Maaf, tidak cukup dana untuk melakukan operasi // [success] => // [code] => 401 // )
tarikhagustia/epayindo 适用场景与选型建议
tarikhagustia/epayindo 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 36 次下载、GitHub Stars 达 1, 最近一次更新时间为 2018 年 09 月 30 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「epay」 「payment-gateway」 「epayindo」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 tarikhagustia/epayindo 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 tarikhagustia/epayindo 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 tarikhagustia/epayindo 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
VUB eplatby driver for the Omnipay payment processing library
Client SDK for CyberSource REST APIs
Epay.bg API wrapper for Laravel 5.*
This is epay package
Laravel epay.bg api integration
First Atlantic Commerce (FAC) Payment Gateway Driver for Omnipay
统计信息
- 总下载量: 36
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 4
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-09-30