Skip to content

DeH4eG/omnipay-luminor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Omnipay: Luminor Gateway

Omnipay Luminor Gateway is a payment processing library for PHP. It's based on Omnipay package

Latest Stable Version Total Downloads Latest Unstable Version License

Installation

Omnipay is installed via Composer. To install, simply require league/omnipay and deh4eg/omnipay-luminor with Composer:

composer require league/omnipay deh4eg/omnipay-luminor

API docs

Luminor Gateway API documentation you can find here

Usage

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

Currently, library implements 2 endpoints:

  1. Create a Purchase
  2. Retrieve an object by id

Code Examples

1. Create a Purchase

Method Endpoint
POST /purchases/
use Omnipay\Luminor\Gateway; use Omnipay\Luminor\Message\Response\PurchaseResponse; use Omnipay\Omnipay; /** @var Gateway $gateway */ $gateway = Omnipay::create(Gateway::getGatewayClass()); $gateway->setBrandId('123456789'); $gateway->setSecretKey('abcde123456'); $options = [ 'client' => [ 'email' => 'test@test.com' ], 'purchase' => [ 'currency' => 'EUR', // Currency code in the ISO 4217 standard, 'language' => 'lv', // Language code in the ISO 639-1 format 'total_override' => 100, // (optional) [type: int] If set, will override total sum from products[], 'products' => [ [ 'name' => 'Product name', 'price' => 100, // [type: int], 'quantity' => 1 ] ] ], 'success_redirect' => 'https://www.example.com/success/', 'failure_redirect' => 'https://www.example.com/failure/', 'cancel_redirect' => 'https://www.example.com/cancel/' // (optional) ]; /** @var PurchaseResponse $response */ $response = $gateway->completePurchase($options)->send(); if ($response->isRedirect()) { $response->redirect(); }

2. Retrieve an object by id

Method Endpoint
GET /purchases/{id}/
use Omnipay\Luminor\Gateway; use Omnipay\Luminor\Message\Response\FetchTransactionResponse; use Omnipay\Omnipay; /** @var Gateway $gateway */ $gateway = Omnipay::create(Gateway::getGatewayClass()); $gateway->setBrandId('123456789'); $gateway->setSecretKey('abcde123456'); $options = [ 'transaction_reference' => 'abc123' // Object ID (UUID) from purchase response ]; /** @var FetchTransactionResponse $response */ $response = $gateway->fetchTransaction($options)->send(); if ($response->isSuccessful()) { // Do code }

Changelog

Please see CHANGELOG for more information what has changed recently.

License

The MIT License (MIT). Please see License File for more information.

About

Omnipay Luminor Gateway is a payment processing library for PHP

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages