haggag / laravel-tap-payment
PHP Laravel Tap支付SDK包
1.0.0
2023-05-09 18:04 UTC
Requires
- php: ^7.1|^7.2|^7.3|^8.0|^8.1|^8.2
- ext-curl: *
- ext-json: *
- illuminate/support: 5.6.*|5.7.*|5.8.*|6.*|7.*|8.*|9.*
This package is auto-updated.
Last update: 2024-09-09 21:32:45 UTC
README
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
贡献
欢迎提交拉取请求。对于重大更改,请先提交一个问题来讨论您想要更改的内容。
请确保根据需要更新测试。