nlsoft/yii2_paypal

Yii2框架的PayPal扩展

安装次数: 20

依赖项: 0

建议者: 0

安全性: 0

星标: 0

关注者: 3

分支: 0

类型:yii2-extension

dev-master 2016-09-26 08:45 UTC

This package is not auto-updated.

Last update: 2024-09-14 18:20:43 UTC


README

为Yii2框架提供PayPal支付扩展的扩展。

安装 将以下部分添加到composer.json文件中

php composer.phar require --prefer-dist nlsoft/yii2-paypal "*" "nlsoft/yii2_paypal": "dev-master" 在您的Yii2配置文件中添加以下部分,包含组件设置

'paypal'=> [
    'class'        => 'nlsoft\Paypal',
    'clientId'     => 'you_client_id',
    'clientSecret' => 'you_client_secret',
    'isProduction' => false,
     // This is config file for the PayPal system
     'config'       => [
         'http.ConnectionTimeOut' => 30,
         'http.Retry'             => 1,
         'mode'                   => \nlsoft\Paypal::MODE_SANDBOX, // development (sandbox) or production (live) mode
         'log.LogEnabled'         => YII_DEBUG ? 1 : 0,
         'log.FileName'           => '@runtime/logs/paypal.log',
        'log.LogLevel'           => \nlsoft\Paypal::LOG_LEVEL_FINE,
    ]
],