bryglen / yii2-omnipay
thephpleague/omnipay for Yii 2
1.0.0
2015-05-28 14:01 UTC
Requires
- omnipay/omnipay: ~2.0
This package is not auto-updated.
Last update: 2024-09-18 09:16:07 UTC
README
基于 https://github.com/thephpleague/omnipay
的 Yii 2 OmniPay 实现
安装
安装此扩展的首选方式是通过 composer。
运行以下命令之一
php composer.phar require --prefer-dist bryglen/yii2-omnipay "1.0.0"
或者
"bryglen/yii2-omnipay": "1.0.0"
将以下内容添加到您的 composer.json
文件的 require 部分中。
在 main.php 中,您的配置将如下所示
'components' => [ 'stripe' => [ 'class' => 'bryglen\omnipay\OmniPayComponent', 'name' => 'Stripe', // optional parameters //'testMode' => true, //'currency' => 'your_currency' 'parameters' => [ 'apiKey' => 'your_api_key' ] ] ]