chumakovanton / yii2-tinkoff-pay
Extension for oplata.tinkoff.ru merchant API
Installs: 592
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 9
Open Issues: 3
Type:yii2-extension
Requires
- php: ^7.1.0
- ext-curl: *
- ext-json: *
- ext-mbstring: *
- roave/security-advisories: dev-master
- yiisoft/yii2: ~2.0.14
This package is auto-updated.
Last update: 2025-03-28 10:07:27 UTC
README
Extension for oplata.tinkoff.ru merchant API
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist chumakovanton/yii2-tinkoff-pay "*"
or add
"chumakovanton/yii2-tinkoff-pay": "*"
to the require section of your composer.json
file.
Usage
Config application :
'components' => [ // ... 'tinkoffPay' => [ 'class' => \chumakovanton\tinkoffPay\TinkoffPay::className(), 'terminalKey' => 'terminalKey', 'secretKey' => 'secretKey', 'apiUrl' => 'https://securepay.tinkoff.ru/v2' ], ]
Once the extension is installed, simply use it in your code by :
/** @var \chumakovanton\tinkoffPay\TinkoffPay $paymentService */ $paymentService = Yii::$app->tinkoffPay; $paymentRequest = $paymentService->initPay('order1', 1000); $paymentRequest->addData('user_id', 123); try { $response = $paymentRequest->send(); } catch (\chumakovanton\tinkoffPay\exceptions\HttpException $exception) { throw new \yii\web\HttpException($exception->statusCode, $exception->getMessage()); } $paymentUrl = $response->getPaymentUrl();