PHPackages                             gentor/omnipay-sofort - 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. gentor/omnipay-sofort

ActiveLibrary[Payment Processing](/categories/payments)

gentor/omnipay-sofort
=====================

SOFORT Überweisung gateway for Omnipay payment processing library

2.3.0(10y ago)13.6k1MITPHP

Since Dec 29Pushed 8y ago1 watchersCompare

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

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

SOFORT Überweisung Omnipay gateway
==================================

[](#sofort-überweisung-omnipay-gateway)

[![Build Status](https://camo.githubusercontent.com/8b67e06100b4e92d481027fa873873569c2dfc2c8923aabd0bcd743cc4087121/68747470733a2f2f7472617669732d63692e6f72672f61696d656f73636f6d2f6f6d6e697061792d736f666f72742e706e673f6272616e63683d6d6173746572)](https://travis-ci.org/aimeoscom/omnipay-sofort)[![Coverage Status](https://camo.githubusercontent.com/7f0c2b3c3b8ec4f8b30297ede5313440eda9aa1ba8b9d3650e26e2c32da6a6a1/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f6769746875622f61696d656f73636f6d2f6f6d6e697061792d736f666f72742f62616467652e7376673f6272616e63683d6d6173746572)](https://coveralls.io/github/aimeoscom/omnipay-sofort?branch=master)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/05cdc8f1bf6700a17f53aee7810a3fb78af715402566c9cf88c4f68444e1861b/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f61696d656f73636f6d2f6f6d6e697061792d736f666f72742f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/aimeoscom/omnipay-sofort/?branch=master)

[SOFORT Überweisung](https://www.sofort.com/eng-INT/) gateway for awesome [Omnipay](https://github.com/adrianmacneil/omnipay) library.

#### API Notes

[](#api-notes)

This gateway only provides 2 methods to place a successful transaction. The first one is `purchase` which initializes a purchase and returns a redirect url.

The second one is `acceptNotification`. This method receives status notification from SOFORT Überweisung and validates it by getting `transaction_details` from the API.

#### Installation

[](#installation)

Omnipay is installed via [Composer](http://getcomposer.org/). To install, simply run:

```
composer require gentor/omnipay-sofort

```

#### Usage

[](#usage)

For general usage instructions, please see the main [Omnipay](https://github.com/omnipay/omnipay) repository.

**1. Purchase**

```
$gateway = Omnipay::create('Sofort');
$gateway->initialize(array(
    'username' => 'sofort_customer_id',
    'password' => 'sofort_api_key',
    'projectId' => 'sofort_project_id',
    'testMode' => true
));

$response = $gateway->purchase(array(
    'amount' => 199.00,
    'description' => 'Google Nexus 4',
))->send();

if ($response->isSuccessful() && $response->isRedirect()) {
    // redirect to offsite payment gateway
    $transactionReference = $response->getTransactionReference();
    $transactionStatus = $response->getTransactionStatus();
    $response->redirect();
} else {
    // payment failed: display message to customer
    echo $response->getMessage();
}
```

**2. Accept Notification**

```
$gateway = Omnipay::create('Sofort');
$gateway->initialize(array(
    'username' => 'sofort_customer_id',
    'password' => 'sofort_api_key',
    'projectId' => 'sofort_project_id',
    'testMode' => true
));

$response = $gateway->acceptNotification()->send();

if ($response->isSuccessful()) {
    // payment was successful
    $transactionReference = $response->getTransactionReference();
    $transactionStatus = $response->getTransactionStatus();
    print_r($response);
} else {
    // payment failed: display message to customer
    echo $response->getMessage();
}
```

###  Health Score

34

—

LowBetter than 75% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity23

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

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

Total

5

Last Release

3651d ago

Major Versions

v1.1.0 → v2.1.02014-03-09

### Community

Maintainers

![](https://www.gravatar.com/avatar/210fd495e96c05caab1d50c09165794ff73175a9b49c43f91df0c8524dfa8add?d=identicon)[gentor](/maintainers/gentor)

---

Top Contributors

[![aimeoscom](https://avatars.githubusercontent.com/u/17964525?v=4)](https://github.com/aimeoscom "aimeoscom (15 commits)")[![iasci](https://avatars.githubusercontent.com/u/5040414?v=4)](https://github.com/iasci "iasci (12 commits)")[![gentor](https://avatars.githubusercontent.com/u/2902504?v=4)](https://github.com/gentor "gentor (6 commits)")[![aimeos](https://avatars.githubusercontent.com/u/8647429?v=4)](https://github.com/aimeos "aimeos (3 commits)")[![mgrinko](https://avatars.githubusercontent.com/u/3237782?v=4)](https://github.com/mgrinko "mgrinko (2 commits)")[![SeoFood](https://avatars.githubusercontent.com/u/2766011?v=4)](https://github.com/SeoFood "SeoFood (2 commits)")[![enesk](https://avatars.githubusercontent.com/u/875592?v=4)](https://github.com/enesk "enesk (1 commits)")[![bamarni](https://avatars.githubusercontent.com/u/1205386?v=4)](https://github.com/bamarni "bamarni (1 commits)")

---

Tags

providerpaymentgatewaysofortomnipayuberweisung

### Embed Badge

![Health badge](/badges/gentor-omnipay-sofort/health.svg)

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

###  Alternatives

[asci/omnipay-sofort

SOFORT Überweisung gateway for Omnipay payment processing library

20127.8k](/packages/asci-omnipay-sofort)[lokielse/omnipay-alipay

Alipay gateway for Omnipay payment processing library

557422.2k11](/packages/lokielse-omnipay-alipay)[omnipay/mollie

Mollie driver for the Omnipay payment processing library

631.8M10](/packages/omnipay-mollie)[sudiptpa/omnipay-nabtransact

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

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

MercadoPago gateway for OmniPay

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

PHPackages © 2026

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