Download the PHP package abettini/pagonline without Composer
On this page you can find all versions of the php package abettini/pagonline. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package pagonline
PagOnline Library
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:
Usage in Laravel
Using Laravel 5.5+, the PagOnline service provider is automagically loaded at startup. It loads the config file and the Factory Facade that can be used to create IgfsCg class instances.
Using Laravel auto-discovery feature you don't need to do that, anyway you can use artisan command vendor:publish
to copy pagonline.php
config file for older Laravel versions:
php artisan vendor:publish --provider="PagOnline\Laravel\PagOnlineServiceProvider"
You also need to register the PagOnline Service Provider (PagOnline\Laravel\PagOnlineServiceProvider
).
Facade usage
.env file configuration
Set the following environment variables in your .env
file:
PAGONLINE_SERVER_URL
payment gateway server url (default: null)PAGONLINE_REQUEST_TIMEOUT
maximum timeout in seconds for completing a request (default: 15)PAGONLINE_CONNECT_TIMEOUT
maximum timeout in seconds for connecting to the server (default: 5)PAGONLINE_TERMINAL_ID
identifier provided by the payment gateway (default: null)PAGONLINE_SIGNATURE_KEY
signature key provided by the payment gateway (default: null)PAGONLINE_CURRENCY_CODE
currency code (default: EUR)PAGONLINE_LANGUAGE_ID
language code (default: IT)
TODO
- [ ] Unit Tests
Contributing
If you want to contribute to this project, please use php-cs-fixer to format your code to PSR standards and rules
specified in the configuration file .php_cs.dist
provided in this repository.
Thank you!
All versions of pagonline with dependencies
ext-curl Version *
ext-libxml Version *
ext-mbstring Version *
ext-simplexml Version *
illuminate/support Version ^6.0|^7.0|^8.0|^9.0|^10.0
guzzlehttp/guzzle Version ^7.8