mrssoft/raiffeisen

Component for payment through the payment gateway Raiffeisen

Maintainers

Package info

github.com/mrs2000/raiffeisen

Type:yii2-extension

pkg:composer/mrssoft/raiffeisen

Statistics

Installs: 22

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

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

This package is auto-updated.

Last update: 2026-03-15 17:47:17 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);