cinghie/yii2-satispay

为您的 Yii 2 项目管理 Satispay 付款的 Yii2 Satispay 扩展

安装: 133

依赖项: 0

建议者: 0

安全: 0

星星: 0

关注者: 3

分支: 0

公开问题: 0

类型:yii2-extension

0.1.0 2019-04-25 21:42 UTC

This package is auto-updated.

Last update: 2024-09-08 11:47:01 UTC


README

License Latest Stable Version Latest Release Date Latest Commit Total Downloads

Yii2 Satispay

安装

安装此扩展的首选方式是通过 composer

运行以下命令之一

php composer.phar require cinghie/yii2-satispay "@dev"

或将其行添加到您的 composer.json 文件的 require 部分。

"cinghie/yii2-satispay": "@dev"

配置

在您的 common 配置文件中添加

use cinghie\satispay\components\Satispay as SatispayComponent;

'satispay' => [
	'class' => SatispayComponent::class,
	'authenticationPath' => '@webroot', // path for authentication.json
	'endPoint' => 'sandbox', // sandbox | production
	'token' => 'YOUR_SATISPAY_TOKEN'
],

使用组件

\Yii::$app->satispay;