renekorss/banklink
Composer 安装命令:
composer require renekorss/banklink
包简介
PHP banklink library to easily integrate Baltic banklinks.
关键字:
README 文档
README
PHP Payment library
PHP payment library to easily integrate Baltic banklinks, E-commerce gateaway (Estcard, Nets Estonia), Liizi Payment Link and Pocopay.
View API documentation at https://renekorss.github.io/Banklink/
Install
composer require renekorss/banklink
Supported providers
| Country / Provider | Payment | Authentication |
|---|---|---|
| Estonia | ||
| Danskebank | ✅ | ✅ |
| Coop Pank | ✅ | ✅ |
| LHV | ✅ | ✅ |
| SEB | ✅ | ✅ |
| Swedbank | ✅ | ✅ |
| Luminor | ✅ | ✅ |
| Nordea | ✅ | ✅ |
| Pocopay | ✅ | does not apply |
| Estcard | ✅ | does not apply |
| Liisi Payment Link | ✅ | does not apply |
| Lithuania | ||
| SEB | ✅ | does not apply |
| Swedbank | ✅ | does not apply |
| Luminor | ✅ | does not apply |
| Šiaulių | ✅ | does not apply |
| Estcard | ✅ | does not apply |
How to use?
For more information, please visit Wiki. Basic example is below.
SECURITY WARNING
Never keep your private and public keys in publicly accessible folder. Instead place keys under root folder (usually
public_htmlorwww).If you store keys as strings in database, then they should be accessible only over HTTPS protocol.
Payment
<?php require __DIR__ . '/vendor/autoload.php'; use RKD\Banklink; // Init protocol $protocol = new Banklink\Protocol\IPizza( 'uid100010', // seller ID (VK_SND_ID) __DIR__ . '/../keys/seb_user_key.pem', // private key '', // private key password, leave empty, if not needed __DIR__ . '/../keys/seb_bank_cert.pem', // public key 'http://localhost/banklink/SEB.php' // return url ); // Init banklink $seb = new Banklink\EE\SEB($protocol); // Set payment data and get payment request object // orderId, sum, message, language $request = $seb->getPaymentRequest(123453, 150, 'Test makse', 'EST'); // You can also add custom request data and/or override request data // Optional $request = $seb->getPaymentRequest(123453, 150, 'Test makse', 'EST', 'EUR', [ 'VK_REF' => 'my_custom_reference_number', // Override reference number 'INAPP' => true // Pocopay specific example ]); ?> <form method="POST" action="<?php echo $request->getRequestUrl(); ?>"> <?php echo $request->getRequestInputs(); ?> <input type="submit" value="Pay with SEB!" /> </form>
Authentication
<?php require __DIR__ . '/vendor/autoload.php'; use RKD\Banklink; // Init protocol $protocol = new Banklink\Protocol\IPizza( 'uid100010', // seller ID (SND ID) __DIR__ . '/../keys/seb_user_key.pem', // private key '', // private key password, leave empty, if not needed __DIR__ . '/../keys/seb_bank_cert.pem', // public key 'http://localhost/banklink/SEB.php' // return url ); // Init banklink $seb = new Banklink\EE\SEB($protocol); // Get auth request object $request = $seb->getAuthRequest(); ?> <form method="POST" action="<?php echo $request->getRequestUrl(); ?>"> <?php echo $request->getRequestInputs(); ?> <input type="submit" value="Authenticate with SEB!" /> </form>
Response from provider
<?php require __DIR__ . '/vendor/autoload.php'; use RKD\Banklink; // Init protocol $protocol = new Banklink\Protocol\IPizza( 'uid100010', // seller ID (SND ID) __DIR__ . '/../keys/seb_user_key.pem', // private key '', // private key password, leave empty, if not needed __DIR__ . '/../keys/seb_bank_cert.pem', // public key 'http://localhost/banklink/SEB.php' // return url ); // Init banklink $seb = new Banklink\EE\SEB($protocol); // Get response object $response = $seb->handleResponse($_POST); // Successful if ($response->wasSuccessful()) { // Get whole array of response $responseData = $response->getResponseData(); // User prefered language $language = $response->getLanguage(); // Only for payment data $orderId = $response->getOrderId(); $sum = $response->getSum(); $currency = $response->getCurrency(); $sender = $response->getSender(); $transactionId = $response->getTransactionId(); $transactionDate = $response->getTransactionDate(); $message = $response->getMessage(); $automatic = $response->isAutomatic(); // true if response was sent automatically by bank // Only for auth data $userId = $response->getUserId(); // Person ID $userName = $response->getUserName(); // Person name $country = $response->getUserCountry(); // Person country $authDate = $response->getAuthDate(); // Authentication response datetime // Method used for authentication // Possible values: ID Card, Mobile ID, One-off code card, PIN-calculator, Code card or unknown $authMethod = $response->getAuthMethod(); // Failed } else { // Payment data $orderId = $response->getOrderId(); // Order id to cancel order etc. } ?>
Tasks
composer build- build by running tests and all code checkscomposer test- run testscomposer format- format code against standardscomposer docs- build API documentationcomposer phpmd- run PHP Mess Detectorcomposer phpcs- run PHP CodeSniffer
License
Licensed under MIT
renekorss/banklink 适用场景与选型建议
renekorss/banklink 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 32.54k 次下载、GitHub Stars 达 36, 最近一次更新时间为 2015 年 10 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「payments」 「Banklink」 「Pangalink」 「credit card」 「seb」 「nets」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 renekorss/banklink 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 renekorss/banklink 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 renekorss/banklink 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Swedbank Payment Initiation API driver for Omnipay payment processing library
Dealing with payments through the Egyptian payment gateway PayMob
Librería para la gestión sencilla de pagos mediante TPV Redsys y Paypal
Payment gateway interface for Swedbank SPP
Banklink is a PHP library that makes integrating various Baltic banks internet services ('bank links') easy, fast and reliable.
Banklink is a PHP library that makes integrating various Baltic banks internet services ('bank links') easy, fast and reliable.
统计信息
- 总下载量: 32.54k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 38
- 点击次数: 32
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-10-12