dev-master
9999999-devThe PayPal extension for the Yii2 framework
BSD-3-Clause
The Requires
- php >=5.3.0
- yiisoft/yii2 *
- ext-curl *
- ext-json *
- paypal/rest-api-sdk-php *
by Minh Ho
yii2 paypal
The PayPal extension for the Yii2 framework
PayPal extension for the Yii2 PayPal payment extension for the Yii2., (*1)
Installation Add to the composer.json file following section:, (*2)
php composer.phar require --prefer-dist nlsoft/yii2-paypal "*" "nlsoft/yii2_paypal": "dev-master" Add to to you Yii2 config file this part with component settings:, (*3)
``` '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, ] ],, (*4)
The PayPal extension for the Yii2 framework
BSD-3-Clause
yii2 paypal