PHPackages                             ingenico/ogone-client - 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. ingenico/ogone-client

ActiveLibrary

ingenico/ogone-client
=====================

Ingenico ePayments Core Library

7.1.0(4y ago)0135.9k4[1 issues](https://github.com/limegrow/core-library/issues)[1 PRs](https://github.com/limegrow/core-library/pulls)1OSL-3.0PHPPHP &gt;=7.0

Since Jul 31Pushed 2y ago2 watchersCompare

[ Source](https://github.com/limegrow/core-library)[ Packagist](https://packagist.org/packages/ingenico/ogone-client)[ RSS](/packages/ingenico-ogone-client/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (10)Dependencies (7)Versions (25)Used By (1)

Ogone API Client
================

[](#ogone-api-client)

FlexCheckout URL
================

[](#flexcheckout-url)

```
use IngenicoClient\Configuration;
use IngenicoClient\Client;
use IngenicoClient\Order;
use IngenicoClient\Alias;

$configuration = new Configuration('pspid', 'api_username', 'password', 'passphrase', 'sha512');
$client = new Client($configuration);
$order = new Order();
$order->setAmount(100);
$order->setCurrency('EUR');
$order->setOrderid('Order1');
$order->setPaymentMethod('CreditCard');
$alias = new Alias('customer1');
$url = $client->getFlexCheckoutUrl($order, $alias);
```

DirectLink Payment
==================

[](#directlink-payment)

```
use IngenicoClient\Alias;
use IngenicoClient\Configuration;
use IngenicoClient\Client;
use IngenicoClient\Order;

$configuration = new Configuration('pspid', 'api_username', 'password', 'passphrase', 'sha512');
$order = new Order();
$order->setAmount(100);
$order->setCurrency('EUR');
$order->setOrderid('Order1');
$alias = new Alias('customer1');
$client = new Client($configuration);
$transaction = $client->createDirectLinkPayment($order, $alias);
```

Payment status
==============

[](#payment-status)

```
use IngenicoClient\Configuration;
use IngenicoClient\Client;

$configuration = new Configuration('pspid', 'api_username', 'password', 'passphrase', 'sha512');
$client = new Client($configuration);
$payment_status = $client->getPaymentStatus('3041842086');
```

Hosted Checkout
===============

[](#hosted-checkout)

```
use IngenicoClient\Configuration;
use IngenicoClient\Client;
use IngenicoClient\Order;

$configuration = new Configuration('pspid', 'api_username', 'password', 'passphrase', 'sha512');
$client = new Client($configuration);
$order = new Order();
$order->setAmount(100);
$order->setCurrency('EUR');
$order->setOrderid('Order1');
$html = $client->initiateRedirectPayment($order);
```

Add logger
==========

[](#add-logger)

you can pass any logger implemented PSR LoggerInterface to log request/response data.

```
use IngenicoClient\Configuration;
use IngenicoClient\IngenicoCoreLibrary;

$configuration = new Configuration('pspid', 'api_username', 'password', 'passphrase', 'sha512');
$client = new IngenicoCoreLibrary($configuration);
$client->selLogger($yourLogger);
```

to build your monolog logger use LoggerBuilder:

```
use IngenicoClient\LoggerBuilder;

$yourLogger = (new LoggerBuilder())
  ->createLogger('log', '/tmp/test.log', Logger::DEBUG)
  ->getLogger();
```

to build your Gelf logger use LoggerBuilder:

```
use IngenicoClient\LoggerBuilder;

$yourLogger = (new LoggerBuilder())
  ->createGelfLogger('log', 'logs.ing.limegrow.com', 12201, Logger::DEBUG)
  ->getLogger();
```

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity26

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 73.3% 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 ~41 days

Recently: every ~62 days

Total

24

Last Release

1524d ago

Major Versions

2.1.0 → 3.0.02020-07-14

3.0.1 → 4.0.02020-09-22

4.0.0 → 5.0.02020-11-03

5.6.0 → 6.0.02021-10-18

6.0.0 → 7.0.02022-02-11

### Community

Maintainers

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

---

Top Contributors

[![olegisk](https://avatars.githubusercontent.com/u/871275?v=4)](https://github.com/olegisk "olegisk (33 commits)")[![raidoa](https://avatars.githubusercontent.com/u/2370789?v=4)](https://github.com/raidoa "raidoa (12 commits)")

### Embed Badge

![Health badge](/badges/ingenico-ogone-client/health.svg)

```
[![Health](https://phpackages.com/badges/ingenico-ogone-client/health.svg)](https://phpackages.com/packages/ingenico-ogone-client)
```

###  Alternatives

[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.0k15.4k](/packages/prestashop-prestashop)[shopware/platform

The Shopware e-commerce core

3.3k1.5M3](/packages/shopware-platform)[silverstripe/framework

The SilverStripe framework

7213.5M2.5k](/packages/silverstripe-framework)[ec-cube/ec-cube

EC-CUBE EC open platform.

78527.0k1](/packages/ec-cube-ec-cube)[lexik/translation-bundle

This bundle allows to import translation files content into the database and provide a GUI to edit translations.

4362.7M19](/packages/lexik-translation-bundle)[contao/core-bundle

Contao Open Source CMS

1231.6M2.4k](/packages/contao-core-bundle)

PHPackages © 2026

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