softify/payum-przelewy24-bundle

Przelewy24 payments bundle for Symfony based on Payum

v1.0.6 2023-06-06 16:08 UTC

This package is auto-updated.

Last update: 2024-04-06 18:17:25 UTC


README

68747470733a2f2f7777772e70727a656c65777932342e706c2f7468656d65732f70727a656c65777932342f6173736574732f696d672f626173652f70727a656c65777932345f6c6f676f5f323032322e737667

Payum Przelewy24 bundle

Payum Bundle for Przelewy24 online payment.

Overview

The bundle integrates Przelewy24 payments with Symfony based applications. After the installation you should be able to create a payment method for przelewy24 gateway and enable its payments in your web application. Bundle also supports online refunds and marketplace.

Installation

  1. Run composer require softify/payum-przelewy24-bundle.

  2. Add bundle dependencies to your config/bundles.php file:

   return [
       Softify\PayumPrzelewy24Bundle\PayumPrzelewy24Bundle::class => ['all' => true],
   ]
  1. Add PayumBundle routing to main configuration
payum_all:
    resource: "@PayumBundle/Resources/config/routing/all.xml"

Configuration

Create entities based on models from bundle

namespace App\Entity;

use Softify\PayumPrzelewy24Bundle\Entity\Payment as BasePayment;

class Payment extends BasePayment
{
}
namespace App\Entity;

use Softify\PayumPrzelewy24Bundle\Entity\PaymentToken as BasePaymentToken;

class PaymentToken extends BasePaymentToken
{
}

Add payum przelewy24 gateway configuration

payum:
    storages:
        App\Entity\Payment: { doctrine: orm }

    security:
        token_storage:
            App\Entity\PaymentToken: { doctrine: orm }

    gateways:
        przelewy24:
            factory: 'przelewy24'
            sandbox: boolean
            clientId: string
            clientSecret: string
            apiKey: string
            marketplace: boolean
            marketplaceApiKey: string
            marketplaceClientId: string
            marketplaceApiUri: string
            actions:
                invalidateCaptureToken: boolean

For marketplace Przelewy24 doesn't have sandbox.