sehsah / laravel-tap-payment
PHP Laravel 的 Tap Payment SDK 包
dev-master
2023-09-11 09:57 UTC
Requires
- php: ^8.1
- illuminate/support: ^9.0|^10.0
This package is auto-updated.
Last update: 2024-09-11 12:04:18 UTC
README
PHP Laravel 的 Tap Payment SDK 包
Laravel 兼容性
安装
使用包管理器 composer 安装 foobar。
composer require essam/laravel-tap-payment
使用方法
创建计费交易
$TapPay = new Payment(['secret_api_Key'=> $secret_api_Key]); $redirect = false; // return response as json , you can use it form mobile web view application return $TapPay->charge([ 'amount' => 200, 'currency' => 'AED', 'threeDSecure' => 'true', 'description' => 'test description', 'statement_descriptor' => 'sample', 'customer' => [ 'first_name' => 'customer', 'email' => 'customer@gmail.com', ], 'source' => [ 'id' => 'src_card' ], 'post' => [ 'url' => null ], 'redirect' => [ 'url' => url('check_payment.php') ] ],$redirect);
如果信息正确,您将被引导到支付页面
通过计费 ID 获取计费
$TapPay = new Payment(['secret_api_Key'=> $secret_api_Key]); $Charge = $TapPay->getCharge($charge_id);
获取计费列表
$TapPay = new Payment(['secret_api_Key'=> $secret_api_Key]); $ChargesList = $TapPay->chargesList([ 'period' => [ 'date' => [ 'from' => Date('Y-m-d H:i:s'), 'to' => Date('Y-m-d H:i:s'), ] ], 'status' => 'INITIATED', 'limit' => 30 ]);
创建退款交易
$TapPay = new Payment(['secret_api_Key'=> $secret_api_Key]); $Refund = $TapPay->refund([ 'charge_id' => $charge_id, 'amount' => 2, 'currency' => 'AED', 'reason' => 'type the refund reason', 'post' => [ 'url' => 'http://post_after_refund_page.php' ]);
通过退款 ID 获取退款
$TapPay = new Payment(['secret_api_Key'=> $secret_api_Key]); $Refund = $TapPay->getRefund($refund_id);
获取退款列表
$TapPay = new Payment(['secret_api_Key'=> $secret_api_Key]); $RefundList = $TapPay->refundList([ 'period' => [ 'date' => [ 'from' => Date('Y-m-d H:i:s'), 'to' => Date('Y-m-d H:i:s'), ] ], 'limit' => 30 ]);
一些教程,教你如何使用此 API
https://medium.com/@sfwanessam9/how-to-use-laravel-tap-payment-sdk-cc9e583f84a4
贡献
欢迎 Pull 请求。对于重大更改,请首先提交一个问题来讨论您想更改的内容。
请确保根据需要更新测试。