1. Go to this page and download the library: Download knit-pay/payum-payu-india library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
$gatewayName = 'payu_india';
/** @var \Payum\Core\Payum $payum */
$storage = $payum->getStorage($paymentClass);
$payment = $storage->create();
$payment->setNumber(uniqid());
$payment->setCurrencyCode('INR');
$payment->setTotalAmount(123); // 1.23 INR
$payment->setDescription('A description');
$payment->setClientId('anId');
$payment->setClientEmail('[email protected]');
$payment->setDetails(array(
// put here any fields in a gateway format.
// for example if you use PayU India you can define optional fields like this.
// Kindly refer to this link for more details. https://devguide.payu.in/docs/payu-hosted-checkout/payu-hosted-checkout-integration/https://devguide.payu.in/docs/payu-hosted-checkout/payu-hosted-checkout-integration/
// Uncomment the optional field below that you want to pass to the payment gateway.
//'firstname' => 'First Name',
//'lastname' => 'Last Name',
//'address1' => 'Address Line 1',
//'address2' => 'Address Line 2',
//'city' => 'City',
//'state' => 'State',
//'country' => 'Country',
//'zipcode' => 'Zip Code',
//'phone' => 'Phone Number',
//'pg' => 'CC',
//'enforce_paymethod' => 'creditcard',
//'display_lang' => 'Hindi'
));