PHP code example of knit-pay / payum-payu-india

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/ */

    

knit-pay / payum-payu-india example snippets


use Payum\Core\GatewayFactoryInterface;
use KnitPay\PayuIndia\PayuIndiaGatewayFactory;

$payum = (new PayumBuilder())
    ->addDefaultStorages()
    ->addGatewayFactory('payu_india', function(array $config, GatewayFactoryInterface $gatewayFactory) {
        return new PayuIndiaGatewayFactory($config, $gatewayFactory);
    })
        
    ->addGateway('payu_india', [
        'factory' => 'payu_india',
        'merchant_key' => 'Key', // Change this.
        'merchant_salt' => 'Salt', // Change this.
        'sandbox' => true,
    ])

    ->getPayum()
;

$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'
));

/** @var \Payum\Core\GatewayInterface $gateway */
if ($reply = $gateway->execute(new Capture($token), true)) {
    if ($reply instanceof HttpRedirect) {
        header("Location: ".$reply->getUrl());
        die();
    } elseif ($reply instanceof HttpPostRedirect) {
        echo $reply->getContent();
        die();
    }

    throw new \LogicException('Unsupported reply', null, $reply);
}
bash
php composer.phar