sebastienheyd/laravel-systempay
Composer 安装命令:
composer require sebastienheyd/laravel-systempay
包简介
Systempay (Banque Populaire) form generator for Laravel
README 文档
README
Features
- Fast and easy form generation for Systempay (by Banque Populaire)
- Support multiple site id for multiple stores within the same project
- Support sha1 and hmac-sha-256
- Blade extension for more flexibility
Installation
- Install the package
composer require sebastienheyd/laravel-systempay
- Publish the config file
php artisan vendor:publish --provider="Sebastienheyd\Systempay\SystempayServiceProvider"
Configuration
After publishing edit the default configuration file : config/systempay.php
return [ 'default' => [ 'site_id' => 'YOUR_SITE_ID', 'key' => env('SYSTEMPAY_SITE_KEY', 'YOUR_KEY'), 'env' => env('SYSTEMPAY_ENV', 'PRODUCTION'), ] ];
You need to set YOUR_SITE_ID and YOUR_KEY with your own values. This two values are given by Systempay.
Hashing algorithms
By default, the package will use hmac-sha-256 to generate the signature. To use sha1 you need to set algo to sha1
in the configuration :
return [ 'default' => [ // ... 'algo' => 'sha1' ] ];
Specific parameters
These parameters are set by default :
| name | default value | note |
|---|---|---|
| currency | 978 | List of currency codes |
| payment_config | SINGLE | SINGLE or MULTIPLE |
| trans_date | [current datetime] | Generated automaticaly |
| page_action | PAYMENT | |
| action_mode | INTERACTIVE | |
| version | V2 | |
| signature | [generated] | Generated automaticaly |
Also see Systempay documentation
NB : you don't have to add the vads_ prefix to parameters, the prefix will be automaticaly added.
But you can also set the parameters with the vads_ prefix, it will be automaticaly removed.
There is also possible to set some specific parameters to a configuration by setting params values.
Example :
return [ 'default' => [ // ... 'params' => [ 'currency' => '826' ] ] ];
In this case, default configuration will use the currency code 826.
Additional configuration
You can add as many configuration as you need by adding a new key to the configuration file.
For example :
return [ 'default' => [ // ... ], 'store_uk' => [ 'site_id' => '123456', 'key' => env('SYSTEMPAY_UK_SITE_KEY', '12345678'), 'env' => env('SYSTEMPAY_UK_ENV', 'PRODUCTION'), 'algo' => 'sha256' ] ];
To use another configuration, call the config method, for example :
$systemPay = Systempay::config('store_uk')->set([ 'amount' => 12.34, 'trans_id' => 123456 ]);
Usage
In your controller :
<?php namespace App\Http\Controllers; use Systempay; // Facade class PaymentController extends Controller { public function payment() { $systemPay = Systempay::set([ 'amount' => 12.34, 'trans_id' => 123456 ]); return view('payment', compact('systemPay')); } }
In your view
{!! $systemPay->render('<button type="submit" class="btn">Payment</button') !!}
Or with the Blade extension :
@systempay <button class="btn btn-lg btn-success">Payment</button> @endsystempay
NB : With the Blade extension, if your variable name passed to the view is not $systemPay you need to
set it like this :
@systempay('paymentData')
In this example it will use $paymentData instead of $systemPay
sebastienheyd/laravel-systempay 适用场景与选型建议
sebastienheyd/laravel-systempay 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.47k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2019 年 03 月 05 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「payment」 「pay」 「gateway」 「laravel」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 sebastienheyd/laravel-systempay 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 sebastienheyd/laravel-systempay 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 sebastienheyd/laravel-systempay 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
repository php library
Payyo Gateway for the Omnipay payment processing library
Библиотека для приема платежей через Альфабанк.
Some pre-defined rules for validation in Omnipay payment processing library.
BluePay gateway for the Omnipay payment processing library
支付宝接口扩展包
统计信息
- 总下载量: 1.47k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 4
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-03-05