PHPackages                             leonardjke/omnipay-yoomoney - 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. leonardjke/omnipay-yoomoney

ActiveLibrary[Payment Processing](/categories/payments)

leonardjke/omnipay-yoomoney
===========================

Yoomoney driver for Omnipay PHP payment library

1.6(4y ago)3133[2 issues](https://github.com/leonardjke/omnipay-yoomoney/issues)MITPHP

Since Jan 26Pushed 4y ago1 watchersCompare

[ Source](https://github.com/leonardjke/omnipay-yoomoney)[ Packagist](https://packagist.org/packages/leonardjke/omnipay-yoomoney)[ Docs](https://github.com/leonardjke/omnipay-yoomoney)[ RSS](/packages/leonardjke-omnipay-yoomoney/feed)WikiDiscussions main Synced 3w ago

READMEChangelog (7)Dependencies (4)Versions (13)Used By (0)

Omnipay: Yoomoney
=================

[](#omnipay-yoomoney)

**YooMoney driver for Omnipay PHP payment library**

[![Latest Version on Packagist](https://camo.githubusercontent.com/05913e5f32d6002a3446415373f3eb1c64967540e70f6b3721cc2fa60ec8d521/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c656f6e6172646a6b652f6f6d6e697061792d796f6f6d6f6e65792e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/leonardjke/omnipay-yoomoney)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/6e799c2c104a52a73b0b8221ef8136d09eee9a4ebe290e4d002e9479ca1555e1/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6c656f6e6172646a6b652f6f6d6e697061792d796f6f6d6f6e65792f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/leonardjke/omnipay-yoomoney)[![Coverage Status](https://camo.githubusercontent.com/c279796ff634729bfe71aca0bb30c69f0035eeb5a3139c9e3e358453368e16bc/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f6c656f6e6172646a6b652f6f6d6e697061792d796f6f6d6f6e65792e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/leonardjke/omnipay-yoomoney/code-structure)[![Quality Score](https://camo.githubusercontent.com/82a79267e405169af2b500aeef78f4cf516fd6c88cf1333f897b9a4553cf4e2f/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6c656f6e6172646a6b652f6f6d6e697061792d796f6f6d6f6e65792e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/leonardjke/omnipay-yoomoney)[![Total Downloads](https://camo.githubusercontent.com/d07fafbbb301d978664febbe5dd2525b5ab3114a1c76814957fb82a6c179becc/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c656f6e6172646a6b652f6f6d6e697061792d796f6f6d6f6e65792e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/leonardjke/omnipay-yoomoney)

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

Install
-------

[](#install)

Install the gateway using require. Require the `league/omnipay` base package and this gateway.

```
$ composer require league/omnipay leonardjke/omnipay-yoomoney
```

Usage
-----

[](#usage)

### Create purchase

[](#create-purchase)

```
$gateway = Omnipay::create('Yoomoney');

$gateway->setReceiver('410011122244470');
$gateway->setPaymentType('PC');
$gateway->setQuickpayForm('shop');
$gateway->setSuccessUrl('https://example.com');

$response = $gateway->purchase([
    'amount' => $payment->price,
    'transactionId' => $payment->id,
    'description' => 'Оплата товара',
    'currency' => 'RUB',
])->send();
```

\###Continue purchase

```
$gateway = Omnipay::create('Yoomoney');

$gateway->setReceiver('410011122244470');
$gateway->setPaymentType('PC');
$gateway->setQuickpayForm('shop');
$gateway->setSuccessUrl('https://example.com');

$response = $gatewayManager->acceptNotification();

// Impotant! Verify hash of the request
if (!$response->isValid()) {
  // return error
}

$data   = $response->getData();
$status = $response->getTransactionStatus();
$id     = $response->getTransactionReference();
```

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

Testing
-------

[](#testing)

```
$ composer test
```

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [leonardjke](https://github.com/leonardjke)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

25

—

LowBetter than 35% of packages

Maintenance7

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity60

Established project with proven stability

 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.

###  Release Activity

Cadence

Every ~41 days

Recently: every ~30 days

Total

11

Last Release

1568d ago

Major Versions

0.1.0 → 1.0.02021-02-14

### Community

Maintainers

![](https://www.gravatar.com/avatar/6551a2fbcafa58ed37141ae59bb8414b67c06ebf0a342d1425c23a203a769115?d=identicon)[leonardjke](/maintainers/leonardjke)

---

Top Contributors

[![leonardjke](https://avatars.githubusercontent.com/u/22217360?v=4)](https://github.com/leonardjke "leonardjke (22 commits)")

---

Tags

phppaymentmerchantomnipayyoomoney

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/leonardjke-omnipay-yoomoney/health.svg)

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

###  Alternatives

[omnipay/mollie

Mollie driver for the Omnipay payment processing library

631.8M10](/packages/omnipay-mollie)[hiqdev/omnipay-robokassa

RoboKassa driver for Omnipay PHP payment library

1160.2k3](/packages/hiqdev-omnipay-robokassa)[hiqdev/omnipay-interkassa

InterKassa driver for the Omnipay PHP payment processing library

1517.9k2](/packages/hiqdev-omnipay-interkassa)

PHPackages © 2026

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