This is the package that will help you add DPO Payment API to your PHP Application, We are open to contribution and support to make it better.
- Create Payment Token (Initiate order at DPO servers)
- Verify Payment Token (Check Transaction status)
- Make Direct payment(Redirects order direct to DPO payment page)
- Fetch Payment Token
- Database migrations to save transaction details
- Much easy to use
- Constantly updated
- Create Payment token
- Verify token
- Redirect to DPO payment page
- Fetch response
- Done
<?php
use Zepson\Dpo\Dpo;
$dpo = new Dpo();
$order = [
'paymentAmount' => "10000",
'paymentCurrency' => "TZS",
'customerFirstName' => "Novath",
'customerLastName' => "Thomas",
'customerAddress' => "Tanzania",
'customerCity' => "Dodoma",
'customerPhone' => "0752771650",
'customerEmail' => "[email protected]",
'companyRef' => "34TESTREFF"
];
// Now make payment
$dpo->directPayment($data);
// Its done! Simple right! 😂
Install the package Via Composer
composer require zepson/dpo-php
- PHP: "7.4|^8.0"
- create array of your order which match parrameters in the following exaple
$order = [
'paymentAmount' => "10000",
'paymentCurrency' => "TZS",
'customerFirstName' => "Novath",
'customerLastName' => "Thomas",
'customerAddress' => "Tanzania",
'customerCity' => "Dodoma",
'customerPhone' => "0752771650",
'customerEmail' => "[email protected]",
'companyRef' => "34TESTREFF"
];
- Now you can choose to make direct payment or createToken First and then make payment
- Starting with Direct Payment
$dpo = new Dpo;
return $dpo->directPayment($data); // this will redirect user to DPO Payment page
- If you preffer to save details then this is the ideal step to follow [Generate Token, Make payment]
- Get Token
$token = $dpo->createToken($data); //return array of response with transaction code
//you can save or do what ever you want with the response
- Get payment Url
$dpo->getPaymentUrl($token);
- Redirect User to payment page
return Redirect::to($payment_url);
As [Novath Thomas] always says
There is a huge difference between sysem security and complications, Complication hurts, API should'nt be complicated Thats one of the primary AIM of the introduction of APIs
This project is licensed under the MIT license.