PHPackages                             dranes/omnipay-ippay - 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. dranes/omnipay-ippay

ActiveLibrary[Payment Processing](/categories/payments)

dranes/omnipay-ippay
====================

IPpay driver for the Omnipay payment processing library

2.0.0(5y ago)29.7k1[3 PRs](https://github.com/dranes/omnipay-ippay/pulls)MITPHP

Since Oct 10Pushed 4y ago2 watchersCompare

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

READMEChangelog (3)Dependencies (3)Versions (7)Used By (0)

omnipay-ippay
=============

[](#omnipay-ippay)

**IPpay driver for the Omnipay PHP payment processing library**

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

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

```
{
    "require": {
        "dranes/omnipay-ippay": "~1.0"
    }
}
```

And run composer to update your dependencies:

```
$ curl -s http://getcomposer.org/installer | php
$ php composer.phar update

```

Basic Usage (Tokenization)
--------------------------

[](#basic-usage-tokenization)

```
use Omnipay\Omnipay;
use Omnipay\Common\GatewayFactory;
use Omnipay\Common\Helper;
use Omnipay\Common\CreditCard;

$gateway = Omnipay::create('Ippay');
$gateway->setTerminalId('xxxxxxxx');
$gateway->setTestMode(true);

$creditCardData = [
    'firstName' => 'John',
    'lastName' => 'Doe',
    'number' => '4111111111111111',
    'expiryMonth' => '02',
    'expiryYear' => '22',
    'cvv' => '123'
];

$card = new CreditCard($creditCardData);
$ccResponse = $gateway->createCard([
    'card' => $card
])->send();

$message = $ccResponse->getMessage();

$response = new \SimpleXMLElement($message);
if($ccResponse->isSuccessful()) {
    $token = $response->Token;
} else {
    $error = $response->ResponseText;
}

```

Basic Usage (Sale with a token)
-------------------------------

[](#basic-usage-sale-with-a-token)

```
use Omnipay\Omnipay;
use Omnipay\Common\GatewayFactory;
use Omnipay\Common\Helper;
use Omnipay\Common\CreditCard;

$gateway = Omnipay::create('Ippay');
$gateway->setTerminalId('xxxxxxxx');
$gateway->setTestMode(true);

$response = $gateway->purchase([
    'transaction_type' => 'SALE',
    'amount' => 100,
    'token' => $token, //previously saved
])->send();

$message = $response->getMessage();
$response = new \SimpleXMLElement($message);

if($response->isSuccessful()) {
    $transaction_reference = $response->getTransactionReference();
} else {
    $error = $response->ResponseText);
}

```

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

###  Health Score

35

—

LowBetter than 77% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity28

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity66

Established project with proven stability

 Bus Factor1

Top contributor holds 72.2% 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 ~432 days

Total

3

Last Release

1950d ago

Major Versions

1.1.0 → 2.0.02021-02-19

### Community

Maintainers

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

---

Top Contributors

[![dranes](https://avatars.githubusercontent.com/u/335721?v=4)](https://github.com/dranes "dranes (13 commits)")[![metalc0der](https://avatars.githubusercontent.com/u/22899783?v=4)](https://github.com/metalc0der "metalc0der (5 commits)")

---

Tags

paymentgatewaypaymerchantomnipayippay

### Embed Badge

![Health badge](/badges/dranes-omnipay-ippay/health.svg)

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

###  Alternatives

[omnipay/payflow

Payflow driver for the Omnipay payment processing library

201.0M3](/packages/omnipay-payflow)[omnipay/payfast

PayFast driver for the Omnipay payment processing library

24641.0k3](/packages/omnipay-payfast)

PHPackages © 2026

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