mendicm/sermepa-omnipay

Sermepa (now Redsys) payment gateway implementation with omnipay

Installs: 5 548

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 25

Type:symfony-bundle

v0.2.1 2016-06-14 10:45 UTC

This package is auto-updated.

Last update: 2024-04-19 18:05:41 UTC


README

RedSys driver for the Omnipay PHP payment processing library

Omnipay is a framework agnostic, multi-gateway payment processing library for PHP 5.6+. This package implements RedSys (formerly Sermepa) support for Omnipay.

Requirements

  • PHP >= 5.6
  • Composer (curl -s http://getcomposer.org/installer | php)

Installation

Omnipay is installed via Composer. To install, simply run:

composer require "mendicm/sermepa-omnipa":"dev-master"

Basic Usage

For general usage instructions, please see the main Omnipay repository.

Upgrade to Omnipay 3.X

Changes for use with Omnipay 3.0

Additional Parameter

If you want to avoid having to multiply the value by 100 just add a new parameter ( multiply=true ) to the purchase function.

Additional Callback

Redsys has an additional callback ( Respuesta online ) that may be active in your redsys platform and therfore must be implemented. This new callback cannot follow the normal usage of Omnipay. You need to implement checkCallbackResponse() and decodeCallbackResponse().

Customizations

Now redirect modal is rendered from blade template (Laravel) and must be stored on resources/views/omnipay/redsys.blade.php.

Form action is stored on a $url variable and hidden fields on $fields (use {!! $fields !!} to print the fields html properly)