skuola/pagonline

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

Igfs payment gateway sdk

Installs: 17 192

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 4

Forks: 3

Open Issues: 0

pkg:composer/skuola/pagonline

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

This package is not auto-updated.

Last update: 2025-10-02 00:15:45 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());