ekyna/payum-payzen

Payum PayZen (Systempay, Scellius) gateway

Installs: 4 844

Dependents: 2

Suggesters: 0

Security: 0

Stars: 4

Watchers: 4

Forks: 13

Open Issues: 1

Type:component

1.6.7 2023-09-01 08:34 UTC

This package is auto-updated.

Last update: 2024-05-04 15:25:06 UTC


README

PayZen Payum Gateway (Systempay, Scellius, CLIC&PAY, OSB, SOGE_COMMERCE)

Build

Installation / Configuration

composer require ekyna/payum-payzen
use Ekyna\Component\Payum\Payzen\Api\Api;
use Ekyna\Component\Payum\Payzen\PayzenGatewayFactory;

$factory = new PayzenGatewayFactory();

$gateway = $factory->create([
    'site_id'     => '132456',
    'certificate' => '132456',
    'ctx_mode'    => Api::MODE_PRODUCTION,
    'hash_mode'   => Api::HASH_MODE_SHA256,
    'directory'   => __DIR__ . '/payzen-cache',
    'endpoint'    => Api::ENDPOINT_SYSTEMPAY, // default value, see `Api::ENDPOINT_*` constants for more
    'endpoint_url'    => // null default value, add custom endpoint not in  `Api::ENDPOINT_*` constants 
]);

// Register your convert payment action
// $gateway->addAction(new \Acme\ConvertPaymentAction());