abdallahmohammed/laravel-telr
Composer 安装命令:
composer require abdallahmohammed/laravel-telr
包简介
Pay online with Telr payment gateway through Laravel
README 文档
README
Installation
You can install the package via composer:
composer require abdallahmohammed/laravel-telr
In Laravel starting from 6.x the service provider will automatically get registered.
In older versions of the framework just add the service provider in config/app.php file:
'providers' => [ // ... TelrGateway\TelrServiceProvider::class, ];
You can publish using the following provider
php artisan vendor:publish --provider="TelrGateway\TelrServiceProvider"
After that you can create the telr transaction table by running the migrations command:
php artisan migrate
When published, the config/telr.php config file contains:
return [ // The current mode is live|production or test 'test_mode' => env('TELR_TEST_MODE', true), // The currency of store 'currency' => 'SAR', // The sale endpoint that receive the params // @see https://telr.com/support/knowledge-base/hosted-payment-page-integration-guide 'sale' => [ 'endpoint' => 'https://secure.telr.com/gateway/order.json', ], // The hosted payment page use the following params as it explained in the integration guide // @see https://telr.com/support/knowledge-base/hosted-payment-page-integration-guide/#request-method-and-format 'create' => [ 'ivp_method' => "create", 'ivp_store' => env('TELR_STORE_ID', null), 'ivp_authkey' => env('TELR_STORE_AUTH_KEY', null), 'return_auth' => '/handle-payment/success', 'return_can' => '/handle-payment/cancel', 'return_decl' => '/handle-payment/declined', ] ];
Usage
After creating the route place the following code to redirect to bank page
$telrManager = new \TelrGateway\TelrManager(); $billingParams = [ 'first_name' => 'John', 'sur_name' => 'Doe', // optional // 'address_1' => '', // 'address_2' => '', // 'city' => '', // 'region' => '', // 'zip' => '', 'country' => 'EG', 'email' => 'abdallah.r660@gmail.com', ]; return $telrManager->pay('ORDER_ID_GOES_HERE', 'TOTAL_AMOUNT', 'DESCRIPTION ...', $billingParams)->redirect(); > - note that if you want to avoid sending billing params while creating token to process the payment its applicable and the `Telr hosted payment page` will require it and will get the customer information on**check**request. And on telr callback **(Success|Cancel|Declined)** to handle response put the following code: ```php use \TelrGateway\TelrManager; $telrManager = new TelrManager(); $telrManager->handleTransactionResponse($request);
abdallahmohammed/laravel-telr 适用场景与选型建议
abdallahmohammed/laravel-telr 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 49 次下载、GitHub Stars 达 0, 最近一次更新时间为 2021 年 09 月 18 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「payment」 「laravel」 「telr」 「telr payment」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 abdallahmohammed/laravel-telr 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 abdallahmohammed/laravel-telr 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 abdallahmohammed/laravel-telr 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Pay online through telr payment gateway
Omnipay gate way for Telr.com
This Omnipay-based bundle provides basic payment logic for Symfony applications.
Alfabank REST API integration
Laravel Telr payment gateway solutions package.
Pay online through telr payment gateway
统计信息
- 总下载量: 49
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-09-18