pmgw / payment-gateway-php7-sdk
Nevogate Payment Gateway SDK
Installs: 12 992
Dependents: 1
Suggesters: 0
Security: 0
Stars: 6
Watchers: 6
Forks: 1
Open Issues: 2
pkg:composer/pmgw/payment-gateway-php7-sdk
Requires
- php: >=7.2
- ext-curl: *
- ext-json: *
- ext-openssl: *
Requires (Dev)
- phpunit/phpunit: ~5
- dev-master
- 5.0.0
- 5.0.0-beta.2
- 5.0.0-beta.1
- 4.4.4-beta.1
- 4.4.3
- 4.4.2
- 4.4.1
- 4.4.0
- 4.3.0
- 4.2.0
- 4.1.2
- 4.1.1
- 4.1.0
- 4.0.1
- 4.0.0
- 3.21.0
- 3.20.0
- 3.19.1
- 3.19.0
- 3.18.1
- 3.18.0
- 3.17.0
- 3.16.0
- 3.15.0
- 3.14.0
- 3.13.0
- 3.12.0
- 3.11.0
- 3.10.0
- 3.9.0
- 3.8.0
- 3.7.1
- 3.7.0
- 3.6.0
- 3.5.0
- 3.4.0
- 3.3.0
- 3.2.0
- 3.1.0
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- dev-dependabot/composer/phpunit/phpunit-8.5.52
- dev-testing
- dev-4.x-master
- dev-4.x-testing
This package is auto-updated.
Last update: 2026-01-27 22:56:54 UTC
README
Repository github.com/pmgw-hu/payment-gateway-php7-sdk (pmgw/payment-gateway-php7-sdk) is abandoned, you should avoid using it.
Use https://github.com/nevogate/payment-gateway-sdk-php (nevogate/payment-gateway-sdk) instead.
Nevogate Payment Gateway SDK - PHP
Version
5.0.0
Requirements
- PHP 7.2
- PHP cURL extension
- PHP OpenSSL extension
- PHP JSON extension
Installation
Nevogate Payment Gateway is available at packagist.org, so you can use composer to download this library.
{ "require": { "nevogate/payment-gateway-sdk": "^5.0@stable" } }
or run
composer require nevogate/payment-gateway-sdk
Technical documentation
Source code
https://github.com/nevogate/payment-gateway-sdk-php
Example usage
Basic configuration
$config = new \Nevogate\PaymentGateway\Config(); $config->storeName = "example store name"; $config->apiKey = "ExamPleApiKey"; $config->encryptPublicKey = "publicKeyGoesHere"; $config->testMode = true; $paymentGateway = new \Nevogate\PaymentGateway($config);
Init request
$init = new \Nevogate\PaymentGateway\Request\Init(); $init->setProviderName(\Nevogate\PaymentGateway::PROVIDER_CIB) // the chosen payment method ->setResponseUrl('http://your.companys.webshop.url/payment_gateway_response') // callback url ->setAmount(1234) ->setCurrency('HUF') ->setOrderId('ORD-1234') // your custom order id ->setUserId('USER-1234') // your custom user id ->setLanguage('HU'); $response = $paymentGateway->send($init);
Start request
if (!$response->ResultCode == "SUCCESSFUL" || !$response->TransactionId) { // handle error here } $paymentGateway->send( (new \Nevogate\PaymentGateway\Request\Start())->setTransactionId($response->TransactionId) );
Result request
$result = $paymentGateway->send( (new \Nevogate\PaymentGateway\Request\Result())->setTransactionId($_GET['TransactionId']) );
Details request
$details = $paymentGateway->send( (new \Nevogate\PaymentGateway\Request\Details())->setTransactionId($_GET['TransactionId']) );
Close request
$response = $paymentGateway->send( (new \Nevogate\PaymentGateway\Request\Close())->setTransactionId($transactionId) );
Refund request
$response = $paymentGateway->send( (new \Nevogate\PaymentGateway\Request\Refund()) ->setTransactionId($transactionId) ->setAmount(100) );
Payout request
$payout = new \Nevogate\PaymentGateway\Request\Payout(); $payout->setPayoutType(\Nevogate\PaymentGateway::PAYOUT_TYPE_FUNDS_DISBURSEMENT) ->setReferenceTransactionId("783593c87fee4d372f47f53840028682") ->setAmount(200) ->setOrderId("NEVOGATE-TEST-ORDER-REG") // your custom order id ->setAdditionalMessage("NEVOGATE-TEST-PAYOUT-MESSAGE"); $response = $paymentGateway->send($payout);
Get payment registrations request
$response = $paymentGateway->send( (new \Nevogate\PaymentGateway\Request\GetPaymentRegistrations()) ->setProviderName(\Nevogate\PaymentGateway::PROVIDER_BARION2) ->setUserId('User1') );
Get payment registration request
$response = $paymentGateway->send( (new \Nevogate\PaymentGateway\Request\GetPaymentRegistration()) ->setTransactionId($transactionId) );
Cancel payment registration request
$response = $paymentGateway->send( (new \Nevogate\PaymentGateway\Request\CancelPaymentRegistration())->setTransactionId($transactionId) );
Cancel all payment registrations request
$response = $paymentGateway->send( (new \Nevogate\PaymentGateway\Request\CancelAllPaymentRegistrations()) ->setProviderName(\Nevogate\PaymentGateway::PROVIDER_BORGUN2) ->setUserId('userId') );
Init Recurring Payment - InitRP
$initRP = new \Nevogate\PaymentGateway\Request\InitRP(); $initRP->setReferenceTransactionId("783593c87fee4d372f47f53840028682") ->setResponseUrl("http://your.companys.webshop.url/payment_gateway_response") // callback url ->setAmount(200) ->setCurrency("HUF") ->setOrderId("NEVOGATE-TEST-ORDER-REG") // your custom order id ->setUserId("NEVOGATE-TEST-USER-REG"); $response = $paymentGateway->send($initRP);
StartRP request
if (!$response->ResultCode == "SUCCESSFUL" || !$response->TransactionId) { // handle error here } $result = $paymentGateway->send( (new \Nevogate\PaymentGateway\Request\StartRP())->setTransactionId($response->TransactionId) );
Create Payment Link - PaymentLinkCreate
$paymentLink = new \Nevogate\PaymentGateway\Request\PaymentLinkCreate(); $paymentLink->setProviderName(\Nevogate\PaymentGateway::PROVIDER_CIB) // the chosen payment method ->setAmount(1234) ->setCurrency('HUF') ->setOrderId('ORD-1234') // your custom order id ->setUserId('USR-1234') // your customer id ->setLanguage('HU'); $response = $paymentGateway->send($paymentLink);
Cancel request
$response = $paymentGateway->send( (new \Nevogate\PaymentGateway\Request\PaymentLinkCancel())->setPaymentLinkName($paymentLinkName) );
Details request
$response = $paymentGateway->send( (new \Nevogate\PaymentGateway\Request\PaymentLinkDetails())->setPaymentLinkName($paymentLinkName) );
Info data
Basic usage
$infoObject = new \Nevogate\PaymentGateway\Data\Info(); $infoCustomerGeneral = new \Nevogate\PaymentGateway\Data\Info\Customer\InfoCustomerGeneral(); $infoCustomerGeneral->setFirstName("John") ->setLastName("Doe") ->setEmail("test@testmail.com"); $infoObject->setObject($infoCustomerGeneral); //add $infoCustomerGeneral to $infoObject $infoShipping = new \Nevogate\PaymentGateway\Data\Info\Order\InfoOrderShippingData(); $infoShipping->setFirstName("John") ->setLastName("Doe") ->setEmail("test@testmail.com") ->setPhoneCc("36") ->setPhone("801234567") ->setCity("Budapest"); $infoObject->setObject($infoShipping); //add $infoShipping to $infoObject $infoOrderProductItem = new \Nevogate\PaymentGateway\Data\Info\Order\InfoOrderProductItem(); $infoOrderProductItem->setSku("PMG055005") ->setName("Product11") ->setQuantity("10") ->setQuantityUnit("db") ->setUnitPrice("22.00") ->setImageUrl("http://webhsop/product11.jpg") ->setDescription("Product11 desc."); $infoObject->setObject($infoOrderProductItem); //add $infoOrderProductItem to $infoObject $infoOrderProductItem = new \Nevogate\PaymentGateway\Data\Info\Order\InfoOrderProductItem(); $infoOrderProductItem->setSku("PMG055008") ->setName("Product12") ->setQuantity("10") ->setQuantityUnit("db") ->setUnitPrice("22.00") ->setImageUrl("http://webhsop/product12.jpg") ->setDescription("Product12 desc."); $infoObject->setObject($infoOrderProductItem); //add $infoOrderProductItem to $infoObject
Init
... $init->setInfo($infoObject); ...
Payout
... $payout->setInfo($infoObject); ...
InitRP
... $initRP->setInfo($infoObject); ...
Payment Link
... $paymentLink->setInfo($infoObject); ...