choate / yii-epluspay
CMBC E Plus Pay Yii 2 extension
dev-master
2017-08-18 10:00 UTC
Requires
- php: >=5.5.0
- choate/epluspay: dev-master
- yiisoft/yii2: >=2.0.6
This package is auto-updated.
Last update: 2025-03-11 00:31:35 UTC
README
安装
基于composer安装
php composer.phar require choate/yii-epluspay
说明
基本配置
'components' => [ 'eplusclient' => [ 'class' => 'choate\yii\epluspay\Client', 'channelNo' => 'xxxx', 'serverUrl' => 'http://example.com', 'lang' => 'zh_CN', 'publicKeyNo' => 'xxxx', 'encryption' => [ 'class' => 'choate\epluspay\helpers\Sha1WithRSAHelper', 'params' => [ "private key file path or \Closure", "public key file path or \Closure", ], ], ], 'epluspayclient' => [ class' => 'choate\yii\epluspay\PayOrdersClient', 'shopId' => 'xxx', 'notifyUrl' => 'notify url', //'client' => 'eplusclient', // 统一配置 'client' => [ 'class' => 'choate\yii\epluspay\Client', 'channelNo' => 'xxxx', 'serverUrl' => 'http://example.com', 'lang' => 'zh_CN', 'publicKeyNo' => 'xxxx', 'encryption' => [ 'class' => 'choate\epluspay\helpers\Sha1WithRSAHelper', 'params' => [ "private key file path or \Closure", "public key file path or \Closure", ], ], ], ], ],