nocksapp/omnipay-nocks

Nocks driver for the Omnipay PHP payment processing library

v2.0.0 2019-11-05 14:28 UTC

README

Nocks driver for the Omnipay PHP payment processing library

Omnipay is a framework agnostic, multi-gateway payment processing library for PHP. This package implements Nocks support for Omnipay 3.

Installation

The Nocks Omnipay driver is installed via Composer. To install, require it:

composer require nocksapp/omnipay-nocks

Basic Usage

<?php

use Omnipay\Omnipay;

$accessToken = '';
$merchant = '';

$gateway = Omnipay::create('Nocks');
$gateway->setAccessToken($accessToken);
$gateway->setTestMode(true); // Use Nocks testmode/sandbox for testing

$response = $gateway->purchase([
	'merchant' => $merchant,
	'amount' => 10.00,
	'currency' => 'NLG',
	'sourceCurrency' => 'EUR',
	'returnUrl' => 'http://example.com/return',
	'callbackUrl' => 'http://example.com/callback',
	'paymentMethod' => 'ideal',
	'issuer' => 'ABNANL2A',
])->send();

if ($response->isRedirect()) {
	$response->redirect();
}

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