PHPackages                             ptuchik/omnipay-yandex - 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. ptuchik/omnipay-yandex

ActiveLibrary[Payment Processing](/categories/payments)

ptuchik/omnipay-yandex
======================

Yandex Money gateway for Omnipay payment processing library

1.0.1(7y ago)027.0k↓39.4%3MITPHP

Since Jul 31Pushed 7y agoCompare

[ Source](https://github.com/ptuchik/omnipay-yandex)[ Packagist](https://packagist.org/packages/ptuchik/omnipay-yandex)[ Docs](https://github.com/ptuchik/omnipay-yandex)[ RSS](/packages/ptuchik-omnipay-yandex/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (3)Versions (4)Used By (0)

Omnipay: Yandex Money
=====================

[](#omnipay-yandex-money)

**Yandex Money driver for the Omnipay Laravel payment processing library**

[![Latest Stable Version](https://camo.githubusercontent.com/52607adefdd9463e390e876ead2a91bc21262cc69d848eb0d3f457fe45dc9926/68747470733a2f2f706f7365722e707567782e6f72672f7074756368696b2f6f6d6e697061792d79616e6465782f76657273696f6e2e706e67)](https://packagist.org/packages/ptuchik/omnipay-yandex)[![Total Downloads](https://camo.githubusercontent.com/34caf48417d3ff25f1553c519b41e87eb50e984ce7cc18eb29d0596a5e5357fe/68747470733a2f2f706f7365722e707567782e6f72672f7074756368696b2f6f6d6e697061792d79616e6465782f642f746f74616c2e706e67)](https://packagist.org/packages/ptuchik/omnipay-yandex)

[Omnipay](https://github.com/thephpleague/omnipay) is a framework agnostic, multi-gateway payment processing library for PHP 5.5+. This package implements Yandex Money support for Omnipay.

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

[](#installation)

Omnipay is installed via [Composer](http://getcomposer.org/). To install, simply add it to your `composer.json` file:

```
{
    "require": {
        "ptuchik/omnipay-yandex": "~1.0"
    }
}
```

And run composer to update your dependencies:

```
composer update

```

Or you can simply run

```
composer require ptuchik/omnipay-yandex

```

Basic Usage
-----------

[](#basic-usage)

1. Use Omnipay gateway class:

```
    use Omnipay\Omnipay;
```

2. Initialize Yandex gateway and make a purchase:

```
    $gateway = Omnipay::create('Yandex');
    $gateway->setShopId(env('SHOP_ID'));
    $gateway->setSecretKey(env('SECRET_KEY'));
    $gateway->setReturnUrl(env('RETURN_URL'));
    $gateway->setAmount(10); // Amount to charge
    $gateway->setCurrency('RUB'); // Currency
    $purchase = $gateway->purchase()->send();

    if ($purchase->isSuccessful()) {
        // Do your logic
    } else {
        throw new Exception($purchase->getMessage());
    }

```

3. Initialize Yandex gateway and make a refund:

```
    $gateway = Omnipay::create('Yandex');
    $gateway->setShopId(env('SHOP_ID'));
    $gateway->setSecretKey(env('SECRET_KEY'));
    $gateway->setReturnUrl(env('RETURN_URL'));
    $gateway->setAmount(10); // Amount to refund
    $gateway->setTransactionReference(10); // Payment ID
    $refund = $gateway->refund()->send();

    if ($refund->isSuccessful()) {
        // Do your logic
    } else {
        throw new Exception($refund->getMessage());
    }

```

For general usage instructions, please see the main [Omnipay](https://github.com/thephpleague/omnipay)repository.

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/ptuchik/omnipay-yandex/issues), or better yet, fork the library and submit a pull request.

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity28

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 50% 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.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

2848d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/97d8960403b7a3aee623f5b5ea9964219b6d23abc8a5c6b893a0832ddcf2d70f?d=identicon)[ptuchik](/maintainers/ptuchik)

---

Top Contributors

[![ptuchik](https://avatars.githubusercontent.com/u/4479697?v=4)](https://github.com/ptuchik "ptuchik (7 commits)")[![Samvel-Sargsyan](https://avatars.githubusercontent.com/u/59954269?v=4)](https://github.com/Samvel-Sargsyan "Samvel-Sargsyan (7 commits)")

---

Tags

paymentgatewaypaymerchantomnipaypurchaseyandex

### Embed Badge

![Health badge](/badges/ptuchik-omnipay-yandex/health.svg)

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

###  Alternatives

[lokielse/omnipay-alipay

Alipay gateway for Omnipay payment processing library

587421.0k11](/packages/lokielse-omnipay-alipay)

PHPackages © 2026

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