andrey-klimenko / yii2-paypal
The PayPal extension for the Yii2 framework
Installs: 238
Dependents: 0
Suggesters: 0
Security: 0
Stars: 37
Watchers: 7
Forks: 38
Type:yii2-extension
Requires
- php: >=5.5.0
- ext-curl: *
- ext-json: *
- paypal/rest-api-sdk-php: 0.8.*
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2024-11-05 09:24:33 UTC
README
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, ] ],