PHPackages                             receiver1/omnipay-pzmpay - 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. receiver1/omnipay-pzmpay

ActiveLibrary[Payment Processing](/categories/payments)

receiver1/omnipay-pzmpay
========================

PZMPay gateway for Omnipay

v1.0.0(1y ago)1212↓33.3%MITPHPPHP &gt;=7.1

Since Oct 3Pushed 1y ago1 watchersCompare

[ Source](https://github.com/receiver1/omnipay-pzmpay)[ Packagist](https://packagist.org/packages/receiver1/omnipay-pzmpay)[ Docs](https://github.com/Receiver1/omnipay-pzmpay/)[ RSS](/packages/receiver1-omnipay-pzmpay/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (2)Versions (2)Used By (0)

Omnipay: PZMPay
===============

[](#omnipay-pzmpay)

PZMPay online acquiring support for Omnipay

[![Total Downloads](https://camo.githubusercontent.com/7f68672270cbc88d99f1c025284ec7d3fcd39c11e690121461be289f22aa2333/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7265636569766572312f6f6d6e697061792d707a6d7061792e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/receiver1/omnipay-pzmpay)[![Latest Version](https://camo.githubusercontent.com/30afc09cee4be783d7670ca8cb093080463e4da4b981651f2cc3ec0254ccb8d6/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7265636569766572312f6f6d6e697061792d707a6d7061792e7376673f7374796c653d666c61742d737175617265)](https://github.com/receiver1/omnipay-pzmpay/releases)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE)

Already Implemented
-------------------

[](#already-implemented)

- Payment creation
- Payment information
- Incoming notifications

To Be Implemented
-----------------

[](#to-be-implemented)

- Payment cancellation
- Project balance
- Fiscalization under Federal Law 54
- Testing mode
- Error codes

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

[](#installation)

```
composer require league/omnipay receiver1/omnipay-pzmpay
```

Usage
-----

[](#usage)

### Gateway Initialization

[](#gateway-initialization)

```
// Create a new payment gateway
$gateway = Omnipay::create('PZMPay');

// Set the secret code
$gateway->setSecretCode('secretCode');
```

### Payment Creation

[](#payment-creation)

```
// Create a new payment for 10 rubles 00 kopecks
$purchaseResponse = $gateway->purchase([
  'amount' => 10,
  'currency' => 'RUB',
  'description' => 'Balance top-up 1337 Cheats',
])->send();

if (!$purchaseResponse->isSuccessful()) {
  throw new Exception($response->getMessage());
}

// Get the payment identifier in PZMPay
$invoiceId = $purchaseResponse->getTransactionId();
// Get the link to the PZMPay payment form
$redirectUrl = $purchaseResponse->getRedirectUrl();
```

### Payment Verification

[](#payment-verification)

```
$notification = $gateway->acceptNotification($data);
if ($notification->getTransactionStatus() === NotificationInterface::STATUS_COMPLETED) {
  /** @var TransactionModel $incomingTransaction */
  $incomingTransaction = $notification->getTransactionReference();

  $transactionResponse = $gateway->fetchTransaction([
    'transactionId' => $incomingTransaction->getId(),
  ])->send();

  /** @var TransactionModel $trustedTransaction */
  $trustedTransaction = $transactionResponse->getTransactionReference();

  print ($trustedTransaction->getAmount());
}
```

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance36

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity34

Early-stage or recently created project

 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

586d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/12e6c6c9c9ef7bf96a0f37acf2fd34738fa4f6f2f16a66f9b44c2e82972dc17c?d=identicon)[receiver](/maintainers/receiver)

---

Top Contributors

[![receiver1](https://avatars.githubusercontent.com/u/62743649?v=4)](https://github.com/receiver1 "receiver1 (11 commits)")

---

Tags

omnipayphppzmpayomnipaypzmpay

### Embed Badge

![Health badge](/badges/receiver1-omnipay-pzmpay/health.svg)

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

###  Alternatives

[league/omnipay

Omnipay payment processing library

6.1k9.7M166](/packages/league-omnipay)[silverstripe/silverstripe-omnipay

SilverStripe Omnipay Payment Module

38106.0k15](/packages/silverstripe-silverstripe-omnipay)

PHPackages © 2026

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