napoleon / ipay88
ipay88 library
Requires
- php: >=7.1
- vlucas/phpdotenv: 2.6
Requires (Dev)
- phpunit/phpunit: 5.7
- squizlabs/php_codesniffer: ^3.0
- symfony/var-dumper: ^3.4
This package is auto-updated.
Last update: 2025-04-10 13:43:35 UTC
README
Installation
composer require napoleon/ipay88 dev-master
Example code
To generate form fields that are hidden,
this will use in page hopping
.
<?php use Napoleon\IPay88\IPay88; $payment = new IPay88; $payment->setRequestParameters([ 'PaymentId' => 1, 'RefNo' => 'your-unique-ref-code', 'Amount' => 15, 'ProdDesc' => 'The description', 'UserName' => 'John Doe', 'UserEmail' => 'john@example.com', 'UserContact' => '09123456789', 'ResponseURL' => 'www.your-response-url.com', 'BackendURL' => 'www.your-backend-url.com' ]); $payment->render();
Or you can simply chain $payment->setRequestParamaters([...])->render()
To be able the IPay88 to do an action for your record, it needs an API comming from you.
You can use the Response::class
to initiate. see example below.
<?php use Napoleon\IPay88\Response; $response = new Response; $response->run( function($success) { if ($success) { return # Do something if it succeed } return # Do something if it fails });
$response->run()
function expects 1 parameter to be a callback function.
$success
variable is the boolean
status of the transaction record made by the user.
$response->getFields()
will return ALL
the data
available from IPay88, the function optionally wants an string data, to be specify what field you want to get.
Todos:
- function to send a http request.
- function that requery the transaction
Note:
Feel free to edit this doc and create PR for the missing todos.