PHPackages                             deniztezcan/omnipay-ingenico-epayments - 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. deniztezcan/omnipay-ingenico-epayments

ActiveLibrary[Payment Processing](/categories/payments)

deniztezcan/omnipay-ingenico-epayments
======================================

Ingenico ePayments driver for the Omnipay PHP payment processing library

1.1.2(4y ago)12132MITPHPCI failing

Since May 7Pushed 4y ago1 watchersCompare

[ Source](https://github.com/deniztezcan/omnipay-ingenico-epayments)[ Packagist](https://packagist.org/packages/deniztezcan/omnipay-ingenico-epayments)[ Docs](https://github.com/deniztezcan/omnipay-ingenico-epayments)[ RSS](/packages/deniztezcan-omnipay-ingenico-epayments/feed)WikiDiscussions master Synced yesterday

READMEChangelog (4)Dependencies (4)Versions (5)Used By (0)

Omnipay: Ingenico ePayments
===========================

[](#omnipay-ingenico-epayments)

**Ingenico ePayments driver (e-Commerce) for the Omnipay PHP payment processing library**

[![Latest Stable Version](https://camo.githubusercontent.com/29502c1505cf775d833b309ebda76029a552b0fb81c86348eeb73d0f2fe9fab0/68747470733a2f2f706f7365722e707567782e6f72672f64656e697a74657a63616e2f6f6d6e697061792d696e67656e69636f2d657061796d656e74732f762f737461626c65)](https://packagist.org/packages/deniztezcan/omnipay-ingenico-epayments)[![Total Downloads](https://camo.githubusercontent.com/dac6e5e02a496370cddd2b3e31f3777fbbcdd5e11d531c9786a04c423be75ab9/68747470733a2f2f706f7365722e707567782e6f72672f64656e697a74657a63616e2f6f6d6e697061792d696e67656e69636f2d657061796d656e74732f646f776e6c6f616473)](https://packagist.org/packages/deniztezcan/omnipay-ingenico-epayments)[![Latest Unstable Version](https://camo.githubusercontent.com/e6659d8899ed5804cf591746eee8459837856cd2546f77db6d586a3840409bab/68747470733a2f2f706f7365722e707567782e6f72672f64656e697a74657a63616e2f6f6d6e697061792d696e67656e69636f2d657061796d656e74732f762f756e737461626c65)](https://packagist.org/packages/deniztezcan/omnipay-ingenico-epayments)[![License](https://camo.githubusercontent.com/de3fd0adfbdf2dbbd57a5ba312534549b60e4de5ff303d5cfbbf6109dc26df96/68747470733a2f2f706f7365722e707567782e6f72672f64656e697a74657a63616e2f6f6d6e697061792d696e67656e69636f2d657061796d656e74732f6c6963656e7365)](https://packagist.org/packages/deniztezcan/omnipay-ingenico-epayments)

[Omnipay 3.x](https://github.com/thephpleague/omnipay) is a framework agnostic, multi-gateway payment processing library for PHP 5.6+

Table of Contents
=================

[](#table-of-contents)

- [Installation](#installation)
- [Payment](#Do%20a%20Payment)
- [Complete Payment](#Complete%20a%20Payment)
- [Support](#support)

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

[](#installation)

Omnipay is installed via [Composer](http://getcomposer.org/).

```
composer require deniztezcan/omnipay-ingenico-epayments:^1

```

Do a Payment
------------

[](#do-a-payment)

```
use Omnipay\Omnipay;

$gateway = Omnipay::create('IngenicoePayments');

$gateway->setMode('test');
$gateway->setPSPID('PSID');
$gateway->setLanguage('nl_NL');
$gateway->setShaIn('SHAIN');
$gateway->setShaOut('SHAOUT');
$gateway->setHashing('SHA-1');

$request = $gateway->purchase([
	'amount' => 9999,
	'currency' => 'EUR',
	'returnUrl' => 'https://example.com/tmp/done',
	'cancelUrl' => 'https://example.com/tmp/cancel',
	'transactionId' => '1111111',
	'description' => 'DESCRIPTION',
	'paymentMethod' => 'PAYMENTMETHOD',
	'card'	=> [
		'firstName'			=> 'firstName',
		'lastName'			=> 'lastName',
		'billingAddress1'	=> 'billingAddress1',
		'postcode'			=> 'postcode',
		'city'				=> 'city',
		'phone'				=> 'phone',
		'email'				=> 'email'
	],
	'customfields' => [
		'XX' => 'XX',
	]
]);
$response = $request->send();
$response->redirect();
```

You will be transfered to the e-Commerce page of Ingenico.

Complete a Payment
------------------

[](#complete-a-payment)

```
use Omnipay\Omnipay;

$gateway = Omnipay::create('IngenicoePayments');

$gateway->setMode('test');
$gateway->setPSPID('PSID');
$gateway->setLanguage('nl_NL');
$gateway->setShaIn('SHAIN');
$gateway->setShaOut('SHAOUT');

$request = $gateway->completePurchase(['transaction' => $_GET]);
$response = $request->send();

if ($response->isSuccessful()) {
	echo $response->getTransactionId();
}else{
	echo $response->getError();
}
```

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 believe you have found a bug, please report it using the [GitHub issue tracker](https://github.com/deniztezcan/omnipay-ingenico-epayments/issues), or better yet, fork the library and submit a pull request.

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity62

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 ~305 days

Total

4

Last Release

1646d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/10155092?v=4)[Deniz Tezcan](/maintainers/deniztezcan)[@deniztezcan](https://github.com/deniztezcan)

---

Top Contributors

[![deniztezcan](https://avatars.githubusercontent.com/u/10155092?v=4)](https://github.com/deniztezcan "deniztezcan (3 commits)")

---

Tags

paymentgatewaypaymerchantomnipayingenicoepaymentsingenico-epayments

### Embed Badge

![Health badge](/badges/deniztezcan-omnipay-ingenico-epayments/health.svg)

```
[![Health](https://phpackages.com/badges/deniztezcan-omnipay-ingenico-epayments/health.svg)](https://phpackages.com/packages/deniztezcan-omnipay-ingenico-epayments)
```

PHPackages © 2026

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