Download the PHP package mattiabasone/pagonline without Composer
On this page you can find all versions of the php package mattiabasone/pagonline. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download mattiabasone/pagonline
More information about mattiabasone/pagonline
Files in mattiabasone/pagonline
Package pagonline
Short Description PagOnline API Library with Laravel integration
License BSD-3-Clause
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_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)
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 ^9.0|^10.0|^11.0|^12.0
guzzlehttp/guzzle Version ~6.0|^7.0
