PHPackages                             webtoucher/omnipay-rbkmoney - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Payment Processing](/categories/payments)
4. /
5. webtoucher/omnipay-rbkmoney

ActiveLibrary[Payment Processing](/categories/payments)

webtoucher/omnipay-rbkmoney
===========================

RBK.money driver for the Omnipay payment processing library

1903PHP

Since Jan 22Pushed 6y ago1 watchersCompare

[ Source](https://github.com/webtoucher/omnipay-rbkmoney)[ Packagist](https://packagist.org/packages/webtoucher/omnipay-rbkmoney)[ RSS](/packages/webtoucher-omnipay-rbkmoney/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (2)Used By (0)

Omnipay: RBK.money
==================

[](#omnipay-rbkmoney)

RBK.money driver for the Omnipay payment processing library.

[![Latest Stable Version](https://camo.githubusercontent.com/1735156a23c468c10217fb57a2aeaf563318f28e70a0103040d659a7aab4d7a2/68747470733a2f2f706f7365722e707567782e6f72672f776562746f75636865722f6f6d6e697061792d72626b6d6f6e65792f762f737461626c65)](https://packagist.org/packages/webtoucher/omnipay-rbkmoney)[![Total Downloads](https://camo.githubusercontent.com/eb0315d92ab498a87d2f1b3c189e6e6700604240024d6f558af9d91df045d904/68747470733a2f2f706f7365722e707567782e6f72672f776562746f75636865722f6f6d6e697061792d72626b6d6f6e65792f646f776e6c6f616473)](https://packagist.org/packages/webtoucher/omnipay-rbkmoney)[![Daily Downloads](https://camo.githubusercontent.com/59a8f8d03b8cae1cb3d173db66ee3722e378c9f8363aa472705f6eb2eb5ba406/68747470733a2f2f706f7365722e707567782e6f72672f776562746f75636865722f6f6d6e697061792d72626b6d6f6e65792f642f6461696c79)](https://packagist.org/packages/webtoucher/omnipay-rbkmoney)[![Latest Unstable Version](https://camo.githubusercontent.com/b97851483962c915d6e3d00775837e4446398d99b94ee07a982399d20bd96609/68747470733a2f2f706f7365722e707567782e6f72672f776562746f75636865722f6f6d6e697061792d72626b6d6f6e65792f762f756e737461626c65)](https://packagist.org/packages/webtoucher/omnipay-rbkmoney)[![License](https://camo.githubusercontent.com/5bc81db3b8e09de938eac8510809637d2e5599adea77eb6dcd592d67202082af/68747470733a2f2f706f7365722e707567782e6f72672f776562746f75636865722f6f6d6e697061792d72626b6d6f6e65792f6c6963656e7365)](https://packagist.org/packages/webtoucher/omnipay-rbkmoney)

Installation
------------

[](#installation)

The preferred way to install this library is through [composer](http://getcomposer.org/download/).

Either run

```
$ php composer.phar require webtoucher/omnipay-rbkmoney "*"

```

or add

```
"webtoucher/omnipay-rbkmoney": "*"

```

to the `require` section of your `composer.json` file.

Usage
-----

[](#usage)

Configure API client:

```
    $gateway = \Omnipay\Omnipay::create('RbkMoney');
    $gateway->setShopId('[SHOP_ID]');
    $gateway->setApiKey('[API_PRIVATE_KEY]');
    $gateway->setLogger(function ($message, $level = 'info') {
        // You can add logging for your requests
    });
```

Then you can create invoice.

```
    $cart = new \Omnipay\RbkMoney\Cart;
    $cart->addItem(new \Omnipay\RbkMoney\CartItem('Some product', 100));
    $cart->addItem(new \Omnipay\RbkMoney\CartItem('Another product', 200, 1, 20));

    $request = $gateway->createInvoice([
        'cart' => $cart,
        'currency' => 'RUB',
        'transactionId' => 1234,
        'product' => "Заказ 1234",
    ]);

    try {
        $response = $request->send();

        if ($response->isSuccessful()) {
            // Your handler
        }
    } catch (\Omnipay\Common\Exception\OmnipayException $e) {
        // Your handler
    }
```

Support
-------

[](#support)

If you are having general issues with Omnipay, we suggest posting on [Stack Overflow](http://stackoverflow.com/). Be sure to add the [omnipay tag](http://stackoverflow.com/questions/tagged/omnipay) so it can be easily found.

If you want to keep up to date with release anouncements, discuss ideas for the project, or ask more detailed questions, there is also a [mailing list](https://groups.google.com/forum/#!forum/omnipay) which you can subscribe to.

If you believe you have found a bug, please report it using the [GitHub issue tracker](https://github.com/webtoucher/omnipay-rbkmoney/issues).

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity40

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/500243?v=4)[Алексей Кузнецов](/maintainers/webtoucher)[@webtoucher](https://github.com/webtoucher)

---

Top Contributors

[![webtoucher](https://avatars.githubusercontent.com/u/500243?v=4)](https://github.com/webtoucher "webtoucher (3 commits)")

### Embed Badge

![Health badge](/badges/webtoucher-omnipay-rbkmoney/health.svg)

```
[![Health](https://phpackages.com/badges/webtoucher-omnipay-rbkmoney/health.svg)](https://phpackages.com/packages/webtoucher-omnipay-rbkmoney)
```

###  Alternatives

[omnipay/paypal

PayPal gateway for Omnipay payment processing library

3156.8M53](/packages/omnipay-paypal)[eduardokum/laravel-boleto

Biblioteca com boletos para o laravel

626351.9k2](/packages/eduardokum-laravel-boleto)[tbbc/money-bundle

This is a Symfony bundle that integrates moneyphp/money library (Fowler pattern): https://github.com/moneyphp/money.

1961.9M](/packages/tbbc-money-bundle)[2checkout/2checkout-php

2Checkout PHP Library

83740.3k2](/packages/2checkout-2checkout-php)[smhg/sepa-qr-data

Generate QR code data for SEPA payments

61717.2k5](/packages/smhg-sepa-qr-data)[omnipay/dummy

Dummy driver for the Omnipay payment processing library

271.2M33](/packages/omnipay-dummy)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
