cixware/esewa-php-sdk
最新稳定版本:3.1.0
Composer 安装命令:
composer require cixware/esewa-php-sdk
包简介
eSewa payment gateway integration in PHP.
README 文档
README
The eSewa SDK for PHP is developed and maintained by remotemerge and the community, simplifying the integration of the eSewa payment service into PHP code. For more details, refer to the eSewa Documentation website.
Getting Started
- Sign up for eSewa – Before you begin, you need to sign up and retrieve your credentials from eSewa.
- Minimum requirements – To run the SDK, your system will need to meet the minimum requirements, including having PHP >= 8.1. We highly recommend having it compiled with the cURL extension and cURL compiled with a TLS backend (e.g., NSS or OpenSSL).
Installation
Install the SDK – Using Composer is the recommended way to install the eSewa SDK for PHP. The SDK is available via Packagist under the remotemerge/esewa-php-sdk package.
composer require remotemerge/esewa-php-sdk
Getting Help
Bugs and feature requests are tracked using GitHub issues, and prioritization is given to addressing them as soon as possible.
- For account and payment related concerns, please contact eSewa directly by calling or emailing them.
- If a bug is identified, please open an issue on GitHub.
- For assistance with integrating eSewa into your application, feel free to reach out to the support team.
Quick Examples
Create an eSewa client
// Init composer autoloader. require dirname(__DIR__) . '/vendor/autoload.php'; use RemoteMerge\Esewa\Client; // Set success and failure callback URLs. $successUrl = 'https://example.com/success.php'; $failureUrl = 'https://example.com/failed.php'; // Initialize eSewa client for development. $esewa = new Client([ 'merchant_code' => 'EPAYTEST', 'success_url' => $successUrl, 'failure_url' => $failureUrl, ]); // Initialize eSewa client for production. $esewa = new Client([ 'merchant_code' => 'b4e...e8c753...2c6e8b', 'success_url' => $successUrl, 'failure_url' => $failureUrl, ]);
Here b4e...e8c753...2c6e8b is merchant code retrieved from eSewa.
Make Payment
When the user initiates the payment process, the package redirects the user to an eSewa site for payment processing. The eSewa system will redirect the user to your specified success URL if the payment is successful and to the failure URL if the payment fails.
$esewa->payment('P101W201', 100, 15, 80, 50);
The method accepts five parameters.
payment(string $pid, float $amt, float $txAmt = 0, float $psc = 0, float $pdc = 0)
pidA unique ID of product or item or ticket etc.amtAmount of product or item or ticket etctxAmtTax amount on product or item or ticket etc. Pass0if Tax/VAT is not applicable.pscThe service charge (if applicable); default to0.pdcThe delivery charge (if applicable); default to0.
OTP for Payment
When using the eSewa payment gateway in production mode, an OTP (One-Time Password) code is sent to the customer's mobile number to verify the transaction. In development mode, the OTP code is a fixed six-digit number, 123456, for testing purposes.
Verify Payment
The verification process identifies potentially fraudulent transactions and checks them against data such as transaction amount and other parameters.
$status = $esewa->verifyPayment('R101', 'P101W201', 245); if ($status) { // Verification successful. }
The method accepts three parameters.
verifyPayment(string $refId, string $oid, float $tAmt)
refIdA unique payment reference code generated by eSewa.oidProduct ID used on payment request.tAmtTotal payment amount (including Tax/VAT and other charges.)
Note: You can extract refId from the success response url parameter.
Contribution
The contributions of the Open Source community are highly valued and appreciated. To ensure a smooth and efficient process, please adhere to the following guidelines when submitting code:
- Ensure that the code adheres to PER Coding Style 2.0 standards.
- All submitted code must pass relevant tests.
- Proper documentation and clean code practices are essential.
- Please make pull requests to the
mainbranch.
Thank you for your support and contributions. Looking forward to reviewing your code.
cixware/esewa-php-sdk 适用场景与选型建议
cixware/esewa-php-sdk 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 29.38k 次下载、GitHub Stars 达 9, 最近一次更新时间为 2019 年 12 月 28 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「api」 「payment」 「gateway」 「token」 「esewa」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 cixware/esewa-php-sdk 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 cixware/esewa-php-sdk 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 cixware/esewa-php-sdk 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A PSR-7 compatible library for making CRUD API endpoints
Alfabank REST API integration
Zero-dependency raw PHP DNS resolver, domain-ownership verification, and intoDNS/MxToolbox-style diagnostics. Queries authoritative nameservers directly over sockets — never trusts the recursive cache for ownership checks.
A lightweight plain-PHP framework for database-backed CRUD APIs.
bughq error tracking - PHP SDK
TrinkPOS Sanal POS (Virtual POS) API client for PHP
统计信息
- 总下载量: 29.38k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 9
- 点击次数: 13
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-12-28