Skip to content

nekoding/gmophp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CodeFactor

Gmo payment gateway php library

Library for easy access API GMOPG

Laravel Version

Laravel version for this package is available https://github.com/nekoding/gmo-payment-gateway

Installation

composer require nekoding/gmo-php

Usage

Example

Entry transaction using credit card

$shop = new Shop('https://pt01.mul-pay.jp/payment', 'your_shop_id', 'your_shop_pass');
$result = $shop->entryTran($param1, $param2, $param3, $param4);

print_r($result)

Immediate Transaction using credit card

$shop = new ImmediateShop('https://pt01.mul-pay.jp/payment', 'your_shop_id', 'your_shop_pass');

//You need to adding required parameter
$data = array(
  'token' => 'TOKEN_PAYMENT',
  'method'  => 1
)

// This function 'get()' will return response in Array
// if you want response in json you can use toJson()
// or if you want response in raw string you can use rawString()

$response = $shop->creditCard('ORDER-TEST', 'AUTH', 100, $data)->get();

print_r($response);

and many more.

Original Source

This repo just modification from :

k1LoW/gmo-pg-php

so the usage same as original source.