PHP code example of naimeken / omnipay-nestpay
1. Go to this page and download the library: Download naimeken/omnipay-nestpay library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
naimeken / omnipay-nestpay example snippets
$loader = ('Examples\\', __DIR__);
use Omnipay\NestPay\Gateway;
use Examples\Helper;
$gateway = new Gateway();
$helper = new Helper();
try {
$params = $helper->getAuthorizeParams();
$response = $gateway->authorize($params)->send();
$result = [
'status' => $response->isSuccessful() ?: 0,
'redirect' => $response->isRedirect() ?: 0,
'message' => $response->getMessage(),
'requestParams' => $response->getServiceRequestParams(),
'response' => $response->getData()
];
print("<pre>" . print_r($result, true) . "</pre>");
} catch (Exception $e) {
throw new \RuntimeException($e->getMessage());
}
$loader = ('Examples\\', __DIR__);
use Omnipay\NestPay\Gateway;
use Examples\Helper;
$gateway = new Gateway();
$helper = new Helper();
try {
$params = $helper->getCaptureParams();
$response = $gateway->capture($params)->send();
$result = [
'status' => $response->isSuccessful() ?: 0,
'redirect' => $response->isRedirect() ?: 0,
'message' => $response->getMessage(),
'requestParams' => $response->getServiceRequestParams(),
'response' => $response->getData()
];
print("<pre>" . print_r($result, true) . "</pre>");
} catch (Exception $e) {
throw new \RuntimeException($e->getMessage());
}
$loader = ('Examples\\', __DIR__);
use Omnipay\NestPay\Gateway;
use Examples\Helper;
$gateway = new Gateway();
$helper = new Helper();
try {
$params = $helper->getPurchaseParams();
$response = $gateway->purchase($params)->send();
$result = [
'status' => $response->isSuccessful() ?: 0,
'redirect' => $response->isRedirect() ?: 0,
'message' => $response->getMessage(),
'requestParams' => $response->getServiceRequestParams(),
'response' => $response->getData()
];
print("<pre>" . print_r($result, true) . "</pre>");
} catch (Exception $e) {
throw new \RuntimeException($e->getMessage());
}
$loader = ('Examples\\', __DIR__);
use Omnipay\NestPay\Gateway;
use Examples\Helper;
$gateway = new Gateway();
$helper = new Helper();
try {
$params = $helper->getPurchase3dParams();
$response = $gateway->purchase($params)->send();
$result = [
'status' => $response->isSuccessful() ?: 0,
'redirect' => $response->isRedirect() ?: 0,
'message' => $response->getMessage(),
'requestParams' => $response->getServiceRequestParams(),
'response' => $response->getData()
];
print("<pre>" . print_r($result, true) . "</pre>");
} catch (Exception $e) {
throw new \RuntimeException($e->getMessage());
}
$loader = ('Examples\\', __DIR__);
use Omnipay\NestPay\Gateway;
use Examples\Helper;
$gateway = new Gateway();
$helper = new Helper();
try {
$params = $helper->getCompletePurchaseParams();
$response = $gateway->completePurchase($params)->send();
$result = [
'status' => $response->isSuccessful() ?: 0,
'redirect' => $response->isRedirect() ?: 0,
'message' => $response->getMessage(),
'requestParams' => $response->getServiceRequestParams(),
'response' => $response->getData()
];
print("<pre>" . print_r($result, true) . "</pre>");
} catch (Exception $e) {
throw new \RuntimeException($e->getMessage());
}
$loader = ('Examples\\', __DIR__);
use Omnipay\NestPay\Gateway;
use Examples\Helper;
$gateway = new Gateway();
$helper = new Helper();
try {
$params = $helper->getRefundParams();
$response = $gateway->refund($params)->send();
$result = [
'status' => $response->isSuccessful() ?: 0,
'redirect' => $response->isRedirect() ?: 0,
'message' => $response->getMessage(),
'requestParams' => $response->getServiceRequestParams(),
'response' => $response->getData()
];
print("<pre>" . print_r($result, true) . "</pre>");
} catch (Exception $e) {
throw new \RuntimeException($e->getMessage());
}
$loader = ('Examples\\', __DIR__);
use Omnipay\NestPay\Gateway;
use Examples\Helper;
$gateway = new Gateway();
$helper = new Helper();
try {
$params = $helper->getVoidParams();
$response = $gateway->void($params)->send();
$result = [
'status' => $response->isSuccessful() ?: 0,
'redirect' => $response->isRedirect() ?: 0,
'message' => $response->getMessage(),
'requestParams' => $response->getServiceRequestParams(),
'response' => $response->getData()
];
print("<pre>" . print_r($result, true) . "</pre>");
} catch (Exception $e) {
throw new \RuntimeException($e->getMessage());
}