PHPackages                             storca/omnipay-sips2 - 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. storca/omnipay-sips2

ActiveLibrary[Payment Processing](/categories/payments)

storca/omnipay-sips2
====================

Omnipay gateway for Worldline Sips PayPage POST API (Atos Sips 2.0)

1.0.2(8y ago)06MITPHP

Since May 19Pushed 4y agoCompare

[ Source](https://github.com/storca/omnipay-sips2)[ Packagist](https://packagist.org/packages/storca/omnipay-sips2)[ Docs](https://github.com/ambroisemaupate/omnipay-sips2)[ RSS](/packages/storca-omnipay-sips2/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (2)Versions (6)Used By (0)

Omnipay gateway for Worldline (Atos) Sips 2.0
=============================================

[](#omnipay-gateway-for-worldline-atos-sips-20)

This gateway implements *Sogenactif's Sips PayPage POST API* only.

Gateway parameters
------------------

[](#gateway-parameters)

Gateway is provided default *Sogenactif* (Société Générale) testing credentials.

ParameterDefault valuemerchantId`002001000000001`secretKey`002001000000001_KEY1`interfaceVersion`"HP_2.14"`keyVersion`1`url`https://payment-webinit.simu.sips-atos.com`Be careful, in *test* mode, `transactionReference` parameter is mandatory.

Usage
-----

[](#usage)

### First step: offsite payment

[](#first-step-offsite-payment)

```
$gateway = \Omnipay\Omnipay::create('Sogenactif');
$gateway->setMerchantId('XXXXXXXXXXXXXXXXX');
$gateway->setSecretKey('XXXXXXXXXXXXXXXXX');
$gateway->setUrl('https://payment-webinit.simu.sips-atos.com');

$card = new \Omnipay\Sips\OffsiteCreditCard();
$card->setEmail('test@test.com');

// Send purchase request
$request = $gateway->purchase(
    [
        'clientIp' => $request->getClientIp(),
        'amount' => '10.00',
        'currency' => 'EUR',
        'returnUrl' => $this->generateUrl('completePurchaseRoute', [], UrlGenerator::ABSOLUTE_URL),
        'notifyUrl' => $this->generateUrl('completePurchaseRoute', [], UrlGenerator::ABSOLUTE_URL),
        'cancelUrl' => $this->generateUrl('cancelRoute', [], UrlGenerator::ABSOLUTE_URL),
        'card' => $card
    ]
);
$response = $request->send();

if ($response->isRedirect()) {
    $response->redirect(); // this will automatically forward the customer
}
```

### Second step: manual and automatic response

[](#second-step-manual-and-automatic-response)

```
$gateway = \Omnipay\Omnipay::create('Sogenactif');
$gateway->setMerchantId('XXXXXXXXXXXXXXXXX');
$gateway->setSecretKey('XXXXXXXXXXXXXXXXX');
$gateway->setUrl('https://payment-webinit.simu.sips-atos.com');

// Send completePurchase request
$request = $gateway->completePurchase();
$response = $request->send();

if ($response->isSuccessful()) {
    // DO your store logic.

    $bankTransactionRef = $response->getTransactionReference();
    $websiteOrderId = $response->getTransactionId();
} elseif ($response->isPending()) {
    // Do temporary things until we get a success/failed tranaction response.
} else {
    echo $response->getMessage();
}
```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 58.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 ~83 days

Total

4

Last Release

3026d ago

Major Versions

0.1.0 → 1.0.02017-06-23

### Community

Maintainers

![](https://www.gravatar.com/avatar/88cc2bb763c37806033fa22c0e3cf3c32c24ec69cf8bf15941f9252015f4fb1a?d=identicon)[storca](/maintainers/storca)

---

Top Contributors

[![ambroisemaupate](https://avatars.githubusercontent.com/u/380026?v=4)](https://github.com/ambroisemaupate "ambroisemaupate (14 commits)")[![storca](https://avatars.githubusercontent.com/u/24790162?v=4)](https://github.com/storca "storca (9 commits)")[![filipheymans](https://avatars.githubusercontent.com/u/20460813?v=4)](https://github.com/filipheymans "filipheymans (1 commits)")

---

Tags

paymentgatewaypaymerchantomnipaysipsworldlineatossogenactifsips2

### Embed Badge

![Health badge](/badges/storca-omnipay-sips2/health.svg)

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

###  Alternatives

[lokielse/omnipay-alipay

Alipay gateway for Omnipay payment processing library

587421.0k11](/packages/lokielse-omnipay-alipay)[sudiptpa/omnipay-nabtransact

National Australia Bank (NAB) Transact driver for the Omnipay payment processing library.

1017.2k](/packages/sudiptpa-omnipay-nabtransact)[lucassmacedo/omnipay-mercadopago

MercadoPago gateway for OmniPay

154.6k](/packages/lucassmacedo-omnipay-mercadopago)

PHPackages © 2026

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