mrssoft / raiffeisen
Component for payment through the payment gateway Raiffeisen
dev-master
2022-07-15 09:19 UTC
Requires
- php: >=8.0
- yiisoft/yii2: >=2.0
This package is auto-updated.
Last update: 2026-03-15 17:47:17 UTC
README
Component for payment through the payment gateway bank "Raiffeisen"
Installation
The preferred way to install this extension is through composer. Either run
php composer.phar require --prefer-dist mrssoft/raiffeisen "*"
or add
"mrssoft/raiffeisen": "*"
to the require section of your composer.json file.
Usage
// Application config
...
'components' => [
'raiffeisen' = > [
'class' => \mrssoft\raiffeisen\RaifClient::class,
'sbpMerchantId'= '...',
'secretKey' => '...',
]
]
...
$response = Yii::$app->raiffeisen->register($rbsOrder);
$response = Yii::$app->raiffeisen->infoQr($response->qrId);