PHPackages                             webtoucher/omnipay-interkassa - 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. webtoucher/omnipay-interkassa

ActiveLibrary[Payment Processing](/categories/payments)

webtoucher/omnipay-interkassa
=============================

InterKassa driver for the Omnipay payment processing library

v1.0(8y ago)11.7k1[1 issues](https://github.com/webtoucher/omnipay-interkassa/issues)BSD-3-ClausePHPPHP &gt;=5.4.0

Since Jul 11Pushed 6y ago1 watchersCompare

[ Source](https://github.com/webtoucher/omnipay-interkassa)[ Packagist](https://packagist.org/packages/webtoucher/omnipay-interkassa)[ Docs](https://github.com/webtoucher/omnipay-interkassa)[ RSS](/packages/webtoucher-omnipay-interkassa/feed)WikiDiscussions master Synced 4d ago

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

Omnipay: InterKassa
===================

[](#omnipay-interkassa)

[InterKassa](https://www.interkassa.com) payment processing driver for the Omnipay PHP payment processing library.

[![Latest Stable Version](https://camo.githubusercontent.com/b67cf4c31e1263a5829bdd3ac8973a061a3ccb6969ed6b6f65f318ebbe252c55/68747470733a2f2f706f7365722e707567782e6f72672f776562746f75636865722f6f6d6e697061792d696e7465726b617373612f762f737461626c65)](https://packagist.org/packages/webtoucher/omnipay-interkassa)[![Total Downloads](https://camo.githubusercontent.com/45952e51960c6428b5a00974b734085204db2cfa1e777aa3fc7e7646791376cf/68747470733a2f2f706f7365722e707567782e6f72672f776562746f75636865722f6f6d6e697061792d696e7465726b617373612f646f776e6c6f616473)](https://packagist.org/packages/webtoucher/omnipay-interkassa)[![Daily Downloads](https://camo.githubusercontent.com/b7be87d64e53e14ea635d84e72d6aeacdcff64415931a4f980dcd49990c6b6b0/68747470733a2f2f706f7365722e707567782e6f72672f776562746f75636865722f6f6d6e697061792d696e7465726b617373612f642f6461696c79)](https://packagist.org/packages/webtoucher/omnipay-interkassa)[![Latest Unstable Version](https://camo.githubusercontent.com/ecc52328d792560ee480dddaa38a54696b1da3962c12b1e01b90fa6eae3aeff0/68747470733a2f2f706f7365722e707567782e6f72672f776562746f75636865722f6f6d6e697061792d696e7465726b617373612f762f756e737461626c65)](https://packagist.org/packages/webtoucher/omnipay-interkassa)[![License](https://camo.githubusercontent.com/e5cf44b3530a75715fc3cb0d60e4459c6c8f2a820ff3d67c4840944fd05f02a4/68747470733a2f2f706f7365722e707567782e6f72672f776562746f75636865722f6f6d6e697061792d696e7465726b617373612f6c6963656e7365)](https://packagist.org/packages/webtoucher/omnipay-interkassa)

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

[](#installation)

The preferred way to install this library is through [composer](http://getcomposer.org/download/).

Either run

```
$ php composer.phar require webtoucher/omnipay-interkassa "*"

```

or add

```
"webtoucher/omnipay-interkassa": "*"

```

to the `require` section of your `composer.json` file.

Usage
-----

[](#usage)

The following gateways are provided by this package:

- InterKassa

```
    $gateway = \Omnipay\Omnipay::create('InterKassa');
    $gateway->setCheckoutId('[CHECKOUT_ID]');
    $gateway->setSignKey('[SIGN_KEY]');
```

The first step is prepairing data and redirecting to InterKassa. This is example of paiment via Privat 24.

```
    $request = $gateway->purchase([
        'amount' => $amount,
        'currency' => 'UAH',
        'transactionId' => $orderId,
        'description' => "Some description (order $orderId)",
        'interface' => 'web',
        'action' => 'payway',
        'payway' => 'privat24_liqpay_merchant3_uah',
        'returnUrl' => "https://mydomain.com/payment/interkassa/success?order=$orderId",
        'returnMethod' => 'GET',
        'cancelUrl' => 'https://mydomain.com/payment/interkassa/cancel',
        'cancelMethod' => 'GET',
        'notifyUrl' => 'https://mydomain.com/payment/interkassa/notify',
        'notifyMethod' => 'POST',
    ]);
    $response = $request->send();
    if ($response->isRedirect()) {
        $response->redirect();
    }
```

There is the notify request handler.

```
    $request = $gateway->completePurchase($_POST);
    $response = $request->send();
    $orderId = $response->getTransactionId(); // You can check this order and mark it as paid.
    if ($response->isSuccessful()) {
        // Your handler
    } else {
        // Your handler
    }
```

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/webtoucher/omnipay-interkassa/issues).

###  Health Score

24

↓

LowBetter than 32% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity59

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

3231d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/500243?v=4)[Алексей Кузнецов](/maintainers/webtoucher)[@webtoucher](https://github.com/webtoucher)

---

Top Contributors

[![webtoucher](https://avatars.githubusercontent.com/u/500243?v=4)](https://github.com/webtoucher "webtoucher (5 commits)")

---

Tags

paymentpaymentsgatewaypaymerchantomnipayInterkassa

### Embed Badge

![Health badge](/badges/webtoucher-omnipay-interkassa/health.svg)

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

PHPackages © 2026

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