hdushku / yii2-paypal-1

PayPal payment extension fpr the Yii2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PayPal extension for the Yii2

PayPal payment extension for the Yii2.

Installation

Add to the composer.json file following section:

php composer.phar require --prefer-dist marciocamello/yii2-paypal "*"
"marciocamello/yii2-paypal": "dev-master"

Add to to you Yii2 config file this part with component settings:

'paypal'=> [
    'class'        => 'marciocamello\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'                   => \marciocamello\Paypal::MODE_SANDBOX, // development (sandbox) or production (live) mode
         'log.LogEnabled'         => YII_DEBUG ? 1 : 0,
         'log.FileName'           => '@runtime/logs/paypal.log',
        'log.LogLevel'           => \marciocamello\Paypal::LOG_LEVEL_FINE,
    ]
],

About

PayPal payment extension fpr the Yii2


Languages

Language:PHP 100.0%