mrssoft/raiffeisen

Component for payment through the payment gateway Raiffeisen

Installs: 14

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 1

Open Issues: 0

Type:yii2-extension

dev-master 2022-07-15 09:19 UTC

This package is auto-updated.

Last update: 2024-04-15 13:05:18 UTC


README

Component for payment through the payment gateway bank "Raiffeisen"

Raiffeisen Manual

Latest Stable Version PHP Github Total Downloads

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);