2017 © Pedro Peláez
 

library sermepa

image

killgt/sermepa

  • Monday, October 16, 2017
  • by killgt
  • Repository
  • 1 Watchers
  • 1 Stars
  • 276 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 13 Versions
  • 3 % Grown

The README.md

Sermepa Build Status

PHP Sermepa payments utility, (*1)

Usage

use Killgt\Sermepa\Request;

$fuc = "999008881";
$key = "Mk9m98IfEblmPfrpsawt7BmxObt98Jev";
$useProductionEnviroment = false;
$terminal = "871";
$businessName = "Massive Dynamic";

$request = new Killgt\Sermepa\Request($fuc, $key, $useProductionEnviroment, $terminal, $businessName);

$request->setAmount(45.54);
$request->setOrder('2014abcd1234');
$request->setTransactionType(0);
$request->setCallbackURL('http://example.com/callback');
$request->setSuccessURL('http://example.com/ok');
$request->setErrorURL('http://example.com/error');
$request->setPayer('Peter Bishop');
$request->setProductDescription('The machine');

echo $request->render(); //outputs the form and auto-submit

Checking the callback

$request = new Killgt\Sermepa\Request;
$request->setKey($key);

if ($response = $request->checkCallback($_POST)) {
    // Get $response['Ds_Order'] and update your order
} else {
    // Something went wrong
}

The Versions

16/10 2017

dev-master

9999999-dev

  Sources   Download

The Requires

  • php >=5.3.0

 

by Avatar killgt

16/10 2017

1.2.0

1.2.0.0

  Sources   Download

The Requires

  • php >=5.3.0

 

by Avatar killgt

10/11 2016

1.1.1

1.1.1.0

  Sources   Download

The Requires

  • php >=5.3.0

 

by Avatar killgt

24/10 2016

1.1.0

1.1.0.0

  Sources   Download

The Requires

  • php >=5.3.0

 

by Avatar killgt

26/11 2015

1.0.5

1.0.5.0

  Sources   Download

The Requires

  • php >=5.3.0

 

by Avatar killgt

19/11 2015

1.0.4

1.0.4.0

  Sources   Download

The Requires

  • php >=5.4.0

 

by Avatar killgt

13/11 2015

1.0.3

1.0.3.0

  Sources   Download

The Requires

  • php >=5.4.0

 

by Avatar killgt

12/11 2015

1.0.2

1.0.2.0

  Sources   Download

The Requires

  • php >=5.4.0

 

by Avatar killgt

12/11 2015

1.0.1

1.0.1.0

  Sources   Download

The Requires

  • php >=5.4.0

 

by Avatar killgt

09/11 2015

1.0.0

1.0.0.0

  Sources   Download

The Requires

  • php >=5.4.0

 

by Avatar killgt

07/01 2015

0.2.1

0.2.1.0

  Sources   Download

The Requires

  • php >=5.4.0

 

by Avatar killgt

01/10 2014

0.2

0.2.0.0

  Sources   Download

The Requires

  • php >=5.4.0

 

by Avatar killgt

29/09 2014

0.1

0.1.0.0

  Sources   Download

The Requires

  • php >=5.4.0

 

by Avatar killgt