vanssata / vanssata-pag-online-sdk
PagOnlineSDK Imprese PHP SDK for developers
Installs: 5 280
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/vanssata/vanssata-pag-online-sdk
Requires
- php: >=7.2
- ext-curl: *
- ext-libxml: *
- ext-mbstring: *
- ext-simplexml: *
- guzzlehttp/guzzle: ~6.0|^7.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.16|^3.0
- orchestra/testbench: ^3.7|^4.0|^5.0|^6.0|^7.0
- phpstan/phpstan: ^1.4
- phpunit/phpunit: ^7.5|^8.0|^9.0
This package is auto-updated.
Last update: 2025-10-29 03:11:59 UTC
README
This sdk is same as mattiabasone/PagOnline but whit remove all laravel dependency
This library can be used with PagOnline Payment Gateway and it can be easily integrated in Laravel.
With this package I'm trying to improve the crappy IGFS CG PHP Library provided by PagOnline Payment gateway.
Basic Usage
Demo scripts can be found in tests/demo, example Init Request:
<?php require __DIR__.'/vendor/autoload.php'; $init = new \VanssataPagOnlineSDK\Init\IgfsCgInit(); $init->serverURL = "https://payment-gateway-example.com/IGFS_CG_SERVICES/services"; $init->tid = "MY-TID-CODE"; $init->kSig = '1234567890987654321'; $init->shopID = 'my-transaction-id'; $init->shopUserRef = "email@example.org"; $init->trType = "AUTH"; $init->currencyCode = "EUR"; $init->amount = 500; // Amount without comma (500 = 5,00) $init->langID = "IT"; $init->notifyURL = "http://my-domain.tld/verify.php"; $init->errorURL = "http://my-domain.tld/error.php"; $init->addInfo1 = 'myFirstAddintionalInfo'; // if you need to edit http client parameters... $init->setRequestTimeout(10); // Seconds $init->setConnectTimeout(5); // Seconds $init->setHttpProxy('tcp://some.proxy'); // Proxy server for requests $init->setHttpAuthUser('username'); // HTTP Basic Auth username $init->setHttpAuthPass('password'); // HTTP Basic Auth password if (!$init->execute()) { // Something went wrong } else { // Redirect user to payment gateway header("location: ".$init->redirectURL); }
.env file configuration
Set the following environment variables in your .env file:
PAGONLINE_SERVER_URLpayment gateway server url (default: null)PAGONLINE_REQUEST_TIMEOUTmaximum timeout in seconds for completing a request (default: 15)PAGONLINE_CONNECT_TIMEOUTmaximum timeout in seconds for connecting to the server (default: 5)PAGONLINE_TERMINAL_IDidentifier provided by the payment gateway (default: null)PAGONLINE_SIGNATURE_KEYsignature key provided by the payment gateway (default: null)PAGONLINE_CURRENCY_CODEcurrency code (default: EUR)PAGONLINE_LANGUAGE_IDlanguage code (default: IT)