tendopay/tendopay-sdk-php
Composer 安装命令:
composer require tendopay/tendopay-sdk-php
包简介
TendoPay API Integration
README 文档
README
If you find a document for v1, please go to TendoPay SDK for PHP (v1)
Requirements
PHP 7.0 and later.
Upgrade
Installation
Using Composer
You can install the sdk via Composer. Run the following command:
composer require tendopay/tendopay-sdk-php
Run SDK Tester
- Run a sample server
php -s localhost:8000 -t vendor/tendopay/tendopay-sdk-php/samples
- Open browser and goto
http://localhost:8000/
Code Examples
Create TendoPayClient
- Using .env
MERCHANT_ID,MERCHANT_SECRET for test can get them at TendoPay Sandbox
## Client Credentials CLIENT_ID= CLIENT_SECRET= ## Redirect URI when the transaction is processed REDIRECT_URL=https://localhost:8000/purhase.php ## Enable Sandbox, it must be false in production TENDOPAY_SANDBOX_ENABLED=false
use TendoPay\SDK\TendoPayClient; $client = new TendoPayClient();
- Using $config variable
use TendoPay\SDK\TendoPayClient; $config = [ 'CLIENT_ID' => '', 'CLIENT_SECRET' => '', 'REDIRECT_URL' => '', 'TENDOPAY_SANDBOX_ENABLED' => false, ]; $client = new TendoPayClient($config);
Make Payment
use TendoPay\SDK\Exception\TendoPayConnectionException; use TendoPay\SDK\Models\Payment; use TendoPay\SDK\V2\TendoPayClient; ### S:Merchant set proper values $merchant_order_id = $_POST['tp_merchant_order_id']; $request_order_amount = $_POST['tp_amount']; $request_order_title = $_POST['tp_description']; $redirectUrl = $_POST['tp_redirect_url'] ?? ''; ### E:Merchant set proper values $client = new TendoPayClient(); try { $payment = new Payment(); $payment->setMerchantOrderId($merchant_order_id) ->setDescription($request_order_title) ->setRequestAmount($request_order_amount) ->setCurrency('PHP') ->setRedirectUrl($redirectUrl); $client->setPayment($payment); $redirectURL = $client->getAuthorizeLink(); header('Location: '.$redirectURL); } catch (TendoPayConnectionException $e) { echo 'Connection Error:'.$e->getMessage(); } catch (Exception $e) { echo 'Runtime Error:'.$e->getMessage(); }
Callback (redirected page)
use TendoPay\SDK\Exception\TendoPayConnectionException; use TendoPay\SDK\Models\VerifyTransactionRequest; use TendoPay\SDK\V2\TendoPayClient; $client = new TendoPayClient(); try { if (TendoPayClient::isCallBackRequest($_REQUEST)) { $transaction = $client->verifyTransaction(new VerifyTransactionRequest($_REQUEST)); if (!$transaction->isVerified()) { throw new UnexpectedValueException('Invalid signature for the verification'); } if ($transaction->getStatus() == \TendoPay\SDK\V2\ConstantsV2::STATUS_SUCCESS) { // PAID // Save $transactionNumber here // Proceed merchant post order process } else if ($transaction->getStatus() == \TendoPay\SDK\V2\ConstantsV2::STATUS_FAILURE) { // FAILED // do something in failure case // error message $transaction->getMessage() } } } catch (TendoPayConnectionException $e) { echo 'Connection Error:'.$e->getMessage(); } catch (Exception $e) { echo 'Runtime Error:'.$e->getMessage(); }
Cancel Payment
use TendoPay\SDK\Exception\TendoPayConnectionException; use TendoPay\SDK\V2\TendoPayClient; $client = new TendoPayClient(); try { $client->cancelPayment($transactionNumber); // merchant process here } catch (TendoPayConnectionException $e) { echo 'Connection Error:'.$e->getMessage(); } catch (Exception $e) { echo 'Runtime Error:'.$e->getMessage(); }
Show Transaction Detail
use TendoPay\SDK\Exception\TendoPayConnectionException; use TendoPay\SDK\V2\TendoPayClient; $client = new TendoPayClient(); try { $transaction = $client->getTransactionDetail($transactionNumber); // merchant process here // $transaction->getMerchantId(); // $transaction->getMerchantOrderId(); // $transaction->getAmount(); // $transaction->getTransactionNumber(); // $transaction->getCreatedAt(); // $transaction->getStatus(); } catch (TendoPayConnectionException $e) { echo 'Connection Error:'.$e->getMessage(); } catch (Exception $e) { echo 'Runtime Error:'.$e->getMessage(); }
tendopay/tendopay-sdk-php 适用场景与选型建议
tendopay/tendopay-sdk-php 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 47.88k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2019 年 06 月 06 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「api」 「e-commerce」 「tendopay」 「installment payment」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 tendopay/tendopay-sdk-php 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 tendopay/tendopay-sdk-php 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 tendopay/tendopay-sdk-php 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Implementation of the Omnibus Directive for Sylius application.
Livewire starter kit for Lunar e-commerce.
Admin Hub for GetCandy. A modern headless e-commerce solution for Laravel PHP framework.
A PSR-7 compatible library for making CRUD API endpoints
Automatically translate and review your content via Lokalise.
Symfony Shop bundle for EasyAdmin based on Sylius
统计信息
- 总下载量: 47.88k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 21
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-06-06