bryglen/yii2-omnipay

thephpleague/omnipay for Yii 2

安装次数: 6,444

依赖项: 0

建议者: 0

安全: 0

星标: 10

关注者: 1

分支: 5

公开问题: 0

类型:yii2-extension

1.0.0 2015-05-28 14:01 UTC

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'
        ]
    ]
]