dofinity / pelecard
PHP Library for integrating Pelecard based payments.
Installs: 1 751
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 3
Open Issues: 2
Requires
- php: ^5.6 || ^7.0
- guzzlehttp/guzzle: ^6.2
Requires (Dev)
- phpunit/phpunit: >=5.7.27
This package is not auto-updated.
Last update: 2024-11-10 04:53:24 UTC
README
pelecard
A lightweight PHP Helper Library for integrating Pelecard Iframe V2 payments.
Installation with Composer
$ composer require dofinity/pelecard:dev-master
Basic usage
Payment page setup
require __DIR__ . '/vendor/autoload.php'; // change terminal, user and password to real credentials $terminal = '0123456'; $user = 'user'; $password = 'password'; // change to your own callback url $GoodURL = 'http://yourdomain/callback.php'; $Total = 100; // PaymentRequest accepts a lot of params, but in this case we use only required ones $PaymentRequest = new \Pelecard\PaymentRequest( $terminal, $user, $password, $GoodURL, $Total ); $payment = new \Pelecard\PelecardPayment(); $payment->setPaymentRequest($PaymentRequest); $result = $payment->SubmitPaymentRequest(); $resultJson = json_decode($result, true); $URL = $resultJson['URL']; $ConfirmationKey = $resultJson['ConfirmationKey']; $Error = $resultJson['Error']; // redirect to payment page header("Location: {$URL}");
Payment validation
// callback.php require __DIR__ . '/vendor/autoload.php'; $PelecardTransactionId = $_GET['PelecardTransactionId']; $PelecardStatusCode = $_GET['PelecardStatusCode']; $ConfirmationKey = $_GET['ConfirmationKey']; $Total = 100; $PaymentResponse = new \Pelecard\PaymentResponse( $PelecardStatusCode, $PelecardTransactionId, '', '', $ConfirmationKey, 100 ); $payment = new \Pelecard\PelecardPayment(); $payment->setPaymentResponse($PaymentResponse); if ($payment->ValidatePayment()) { echo 'Ok. Payment has been verified'; } else { echo 'Fail. Payment forged'; }
Retrieve Transaction info
// callback.php require __DIR__ . '/vendor/autoload.php'; // change terminal, user and password to real credentials $terminal = '0123456'; $user = 'user'; $password = 'password'; $PelecardTransactionId = $_GET['PelecardTransactionId']; $transaction = new \Pelecard\PelecardTransaction( $terminal, $user, $password, $PelecardTransactionId ); // use properties from src/Pelecard/PelecardTransaction.php class var_dump($transaction);