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

AbandonedArchivedLibrary[Payment Processing](/categories/payments)

seofood/omnipay-sofort
======================

SOFORT Überweisung gateway for Omnipay payment processing library

3.0.1(7y ago)13.2k1MITPHP

Since Dec 29Pushed 7y ago1 watchersCompare

[ Source](https://github.com/SeoFood/omnipay-sofort)[ Packagist](https://packagist.org/packages/seofood/omnipay-sofort)[ RSS](/packages/seofood-omnipay-sofort/feed)WikiDiscussions master Synced yesterday

READMEChangelog (2)Dependencies (4)Versions (8)Used By (0)

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

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

[![Build Status](https://camo.githubusercontent.com/49013c8cbf8e65aec9495a13ebc19c36f96e04320ce9adea2a845dd92362155b/68747470733a2f2f7472617669732d63692e6f72672f53656f466f6f642f6f6d6e697061792d736f666f72742e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/SeoFood/omnipay-sofort)

[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 `authorize` which initializes an authorization and returns a redirect url.

The second one is `completeAuthorize`. This method doesn't actually complete anything. Since SOFORT Überweisung doesn't have a `capture` functionality, the only way to know about a transaction is checking that transaction details. According to official docs, if there is no any successful or failed transactions, the API will return empty `transactions` XML object.

#### Installation

[](#installation)

To install, simply add it to your composer.json file:

```
{
    "require": {
        "seofood/omnipay-sofort": "~3.0"
    }
}
```

and run `composer update`

#### Usage

[](#usage)

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

**1. Authorize**

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

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

$transactionReference = $response->getTransactionReference();

if ($response->isRedirect()) {
    // redirect to offsite payment gateway
    $response->redirect();
} else {
    // payment failed: display message to customer
    echo $response->getMessage();
}
```

**2. Complete Authorize**

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

$response = $gateway->completeAuthorize(array(
    'transactionReference' => $transactionReference,
))->send();

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

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity68

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

Recently: every ~424 days

Total

7

Last Release

2724d ago

Major Versions

v1.1.0 → v2.1.02014-03-09

2.3.0 → 3.0.02018-11-27

### Community

Maintainers

![](https://www.gravatar.com/avatar/44b5687fa4c0e5dfdc02e191a68cde8fcede4be3d30c5748e7f2221cf1df775e?d=identicon)[SeoFood](/maintainers/SeoFood)

---

Top Contributors

[![aimeoscom](https://avatars.githubusercontent.com/u/17964525?v=4)](https://github.com/aimeoscom "aimeoscom (18 commits)")[![iasci](https://avatars.githubusercontent.com/u/5040414?v=4)](https://github.com/iasci "iasci (12 commits)")[![SeoFood](https://avatars.githubusercontent.com/u/2766011?v=4)](https://github.com/SeoFood "SeoFood (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)")[![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

###  Code Quality

Code StylePHP\_CodeSniffer

### Embed Badge

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

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

###  Alternatives

[asci/omnipay-sofort

SOFORT Überweisung gateway for Omnipay payment processing library

20127.5k](/packages/asci-omnipay-sofort)[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)
