webtoucher / omnipay-rbkmoney
RBK.money driver for the Omnipay payment processing library
Requires
- php: >=5.4.0
- ext-openssl: *
- omnipay/common: ~2.0
Requires (Dev)
- omnipay/tests: ~2.0
This package is auto-updated.
Last update: 2024-10-23 20:57:05 UTC
README
RBK.money driver for the Omnipay payment processing library.
Installation
The preferred way to install this library is through composer.
Either run
$ php composer.phar require webtoucher/omnipay-rbkmoney "*"
or add
"webtoucher/omnipay-rbkmoney": "*"
to the require
section of your composer.json
file.
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
If you are having general issues with Omnipay, we suggest posting on Stack Overflow. Be sure to add the omnipay tag 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 which you can subscribe to.
If you believe you have found a bug, please report it using the GitHub issue tracker.