skuola/pagonline

There is no license information available for the latest version (v1.1.1) of this package.

Igfs payment gateway sdk

v1.1.1 2017-05-15 12:45 UTC

This package is not auto-updated.

Last update: 2024-05-15 18:10:47 UTC


README

Igfs payment gateway sdk

#Install

composer require skuola/pagonline

#Usage

###Verify transaction

<?php

include ('vendor/autoload.php');

//Verify transaction

use PagOnline\init\IgfsCgVerify;

$verify = new IgfsCgVerify();

$verify->serverURL = "server url";
$verify->tid = "terminal id";
$verify->kSig = "signature";
$verify->timeout = "timeout";

$verify->shopID    = "ShopID";
$verify->paymentID = "PaymentID";

var_dump("Result", $verify->execute());