PHPackages                             wdwp/yandexmoney - 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. wdwp/yandexmoney

ActiveLibrary[Payment Processing](/categories/payments)

wdwp/yandexmoney
================

PHP library for Yandex money forms and buttons api

v1.0(8y ago)132MITPHPPHP &gt;=5.6.0

Since Jan 16Pushed 8y agoCompare

[ Source](https://github.com/wdwp/yandexmoney)[ Packagist](https://packagist.org/packages/wdwp/yandexmoney)[ Docs](https://github.com/wdwp/yandexmoney)[ RSS](/packages/wdwp-yandexmoney/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (1)DependenciesVersions (2)Used By (0)

yandexmoney
===========

[](#yandexmoney)

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

[](#installation)

Install this package through Composer. To your `composer.json` file, add:

```
{
    "require": {
        "wdwp/yandexmoney": "^1.0"
    }
}
```

Examples
--------

[](#examples)

Create payment:

```
use wdwp\yandexmoney\Payment;

$payment = new Payment(
    '4100163332366', 'Payment', 100.0, 'shop', 'AC'
);

$form = $payment->setFormcomment('Shop name')
    ->setDest('Payment for some goods')
    ->setLabel($order->id)
    ->setComment($order->comment)
    ->setSuccessUrl('http://yoursite.com/success.php')
    ->needFio(true)
    ->needEmail(true)
    ->needPhone(true)
    ->needAddress(true)
    ->getForm();

echo $form;

// redirect to payment url
$payment->send();

// get payment url
$url = $payment->getUrl();
```

Check payment result:

```
// somewere in result url handler...
...
use wdwp\yandexmoney\Payment;

$result = Payment::validate($_POST, 'RX29rXHxOsR0exsBs6Hvi'); //secret word

if ($result) {
    // payment is valid
    $order = Orders::find($result['label']);

}
...
```

Success page:

```
...
echo "Thank you for your payment!";
...
```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity58

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.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

3036d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/ed868a923688ac93d7468d5194d8f0fc8c01288ddd313bdccccf507f12fa5cb3?d=identicon)[wdwp](/maintainers/wdwp)

---

Top Contributors

[![wdwp](https://avatars.githubusercontent.com/u/25010438?v=4)](https://github.com/wdwp "wdwp (14 commits)")

---

Tags

yandexpaymentyandex

### Embed Badge

![Health badge](/badges/wdwp-yandexmoney/health.svg)

```
[![Health](https://phpackages.com/badges/wdwp-yandexmoney/health.svg)](https://phpackages.com/packages/wdwp-yandexmoney)
```

###  Alternatives

[yandex-money/yandex-money-sdk-php

Yandex.Money API SDK for PHP

105167.4k2](/packages/yandex-money-yandex-money-sdk-php)[paymentsuite/stripe-bundle

Stripe PaymentSuite Component

105.0k](/packages/paymentsuite-stripe-bundle)

PHPackages © 2026

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