PHPackages                             valiton/payum-payone - 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. valiton/payum-payone

ActiveLibrary[Payment Processing](/categories/payments)

valiton/payum-payone
====================

The Payum extension. It provides PAYONE payment integration.

3.0.0(1y ago)1114.6k—0%9MITPHPPHP &gt;=7.3 | ^8.1

Since Feb 13Pushed 1y ago23 watchersCompare

[ Source](https://github.com/valiton/payum-payone)[ Packagist](https://packagist.org/packages/valiton/payum-payone)[ RSS](/packages/valiton-payum-payone/feed)WikiDiscussions master Synced 1mo ago

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

PAYONE
======

[](#payone)

The Payum extension. It provides PAYONE payment integration

Getting started
---------------

[](#getting-started)

Register factory and gateway with the `PayumBuilder`

```
use Payum\Core\GatewayFactoryInterface;
use Valiton\Payum\Payone\PayoneGatewayFactory;

$payumBuilder->addGatewayFactory('payone', function(array $config, GatewayFactoryInterface $coreGatewayFactory) {
    return new PayoneGatewayFactory($config, $coreGatewayFactory);
});

$payumBuilder->addGateway('payone', [
    'factory' => 'payone',
    'merchant_id' => 123456, // change this
    'sub_account_id' => 567890 // change this
    'portal_id' => 6543276, // change this
    'key' => '1Q2W3E4R5T6' // change this
]);

```

The Payone gateway needs some additional fields to work properly

```
$payment = new Payment();
$payment->setDetails([
    // add required key value pairs for the payment method
]);

```

Please see the Payment Method Documentation for Payment Method specific fields.

- [Credit Card](Resources/doc/credit-card.md)
- [Giropay](Resources/doc/giropay.md)
- [Paydirekt](Resources/doc/paydirekt.md)
- [Direct Debit SEPA](Resources/doc/direct-debit-sepa.md)

Symfony Integration
-------------------

[](#symfony-integration)

Payum Bundle 2.0 requires at least Symfony 2.8. If you want to use an older version of Symfony take a look at

Install the Payum Bundle and set it up according to it's documentation.

```
composer require payum/payum-bundle ^2.0

```

Register the Payone Gateway Factory as a service

```
# app/config/services.yml

services:
    app.payum.payone.factory:
        class: Payum\Core\Bridge\Symfony\Builder\GatewayFactoryBuilder
        arguments: [Valiton\Payum\Payone\PayoneGatewayFactory]
        tags:
            - { name: payum.gateway_factory_builder, factory: payone }
```

And configure your credentials for the gateway

```
# app/config/config.yml

payum:
    gateways:
        payone:
            factory: payone
            merchant_id: 123456 # change this
            sub_account_id: 567890 # change this
            portal_id: 6543276 # change this
            key: 1Q2W3E4R5T6 # change this
```

Now you can retrieve the gateway from the `payum` service

```
$gateway = $this->get('payum')->getGeteway('payone');
```

### Transaction Status URL (Merchant Backend)

[](#transaction-status-url-merchant-backend)

In the PAYONE Merchant Interface (PMI) a **TransactionStatus URL** have to be defined. That transaction URL have to be a non-dynamic notify URL. The Payum Bundle for symfony provides therefor a route `payum_notify_do_unsafe`. That takes a static parameter `gateway` instead of a dynamic token.

```
.../payment/notify/unsafe/{gateway}

```

For PAYONE the gateway would be `payone`.

```
.../payment/notify/unsafe/payone

```

Add this URL as the **TransactionStatus URL** to the PMI.

License
-------

[](#license)

The MIT License (MIT)

Copyright (c) 2016 Valiton GmbH

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

###  Health Score

45

—

FairBetter than 93% of packages

Maintenance32

Infrequent updates — may be unmaintained

Popularity34

Limited adoption so far

Community23

Small or concentrated contributor base

Maturity77

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

Total

5

Last Release

698d ago

Major Versions

1.0.1 → 2.0.02022-04-06

2.1.0 → 3.0.02024-06-20

PHP version history (3 changes)1.0.1PHP ^5.5.0|^7.0

2.0.0PHP &gt;=7.1.3

3.0.0PHP &gt;=7.3 | ^8.1

### Community

Maintainers

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

![](https://avatars.githubusercontent.com/u/648874?v=4)[Uwe Jäger](/maintainers/uwej711)[@uwej711](https://github.com/uwej711)

![](https://www.gravatar.com/avatar/63f4370c49ef29f6e744507daa84e14e1ffd1b2a978201f0c21dc0f99552857b?d=identicon)[valiton](/maintainers/valiton)

---

Top Contributors

[![ahaskioglu-valiton](https://avatars.githubusercontent.com/u/129849892?v=4)](https://github.com/ahaskioglu-valiton "ahaskioglu-valiton (7 commits)")[![svs-valiton](https://avatars.githubusercontent.com/u/9139405?v=4)](https://github.com/svs-valiton "svs-valiton (6 commits)")[![nymo](https://avatars.githubusercontent.com/u/884833?v=4)](https://github.com/nymo "nymo (3 commits)")[![naucon](https://avatars.githubusercontent.com/u/1407477?v=4)](https://github.com/naucon "naucon (2 commits)")[![uwej711](https://avatars.githubusercontent.com/u/648874?v=4)](https://github.com/uwej711 "uwej711 (2 commits)")

---

Tags

paymentpayumpsppayone

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/valiton-payum-payone/health.svg)

```
[![Health](https://phpackages.com/badges/valiton-payum-payone/health.svg)](https://phpackages.com/packages/valiton-payum-payone)
```

###  Alternatives

[flux-se/payum-stripe

Payum Stripe gateways

29407.5k4](/packages/flux-se-payum-stripe)[sylius/payum-bundle

Payum integration for Symfony e-commerce applications.

11109.5k8](/packages/sylius-payum-bundle)[crevillo/payum-redsys

Redsys gateway

1648.0k1](/packages/crevillo-payum-redsys)

PHPackages © 2026

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