ergosarapu/payum-everypay

The Payum extension for EveryPay.

0.0.6 2025-02-17 15:54 UTC

This package is auto-updated.

Last update: 2025-02-17 15:55:11 UTC


README

The Payum extension for EveryPay payment gateway integration.

Installation

Install using Composer :

composer require ergosarapu/payum-everypay

Configure EveryPay callback notifications

  1. Create notify token without payment model identity. If using Symfony, this can be done as follows:
    php bin/console payum:security:create-notify-token everypay
  2. Configure notification callback in EveryPay merchant portal with the generated URL
  3. Register CallbackNotificationIdentityResolverExtension with the gateway. This extension resolves the payment model identity based on the payment_reference.

Supported Operations

Authorize

Authorize initiates the payment, but does not capture it. Note that depending on capture delay setting on the EveryPay account used, the authorization may result the payment to be still captured immediately.

Capture

Initiates payment to capture immediately. Also captures previously authorized payment.

Token Agreements for MIT/CIT payments

To request token for later use in MIT/CIT payments, you may create and register extension in your gateway to set token_agreement, request_token, token_consent_agreed values.

See example extension here: SetRequestTokenAgreementExtension

MIT/CIT

To perform CIT or MIT payment, you may create and register extension in your gateway to set _type, token_agreement, token_details values.

See example extension for CIT: PrepareForCitPaymentExtension

See example extension for MIT: PrepareForMitPaymentExtension

Cancel

TODO: Not yet supported