PHP code example of digistorm / omnipay-rdp

1. Go to this page and download the library: Download digistorm/omnipay-rdp 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/ */

    

digistorm / omnipay-rdp example snippets



use Omnipay\Omnipay;
use Omnipay\Common\CreditCard;
use Money\Currency;
use Money\Money;

// Create a gateway for the Rdp Gateway
// (routes to GatewayFactory::create)
/* @var \Omnipay\Rdp\Gateway $gateway */
$gateway = Omnipay::create('Rdp');

$gateway->setTestMode(true);
$gateway->setEndpointBase('https://secure-dev.reddotpayment.com/');
$gateway->setMerchantId('merchantIdValue');
$gateway->setSecretKey('secretKeyValue');


// Tokenize a card
/* @var \Omnipay\Rdp\Message\TokenResponse $response */
$response = $gateway->createToken([
    'card' => new CreditCard([
        'firstName' => 'John',
        'lastName' => 'Doe',
        'expiryMonth' => '09',
        'expiryYear' => '2029',
        'number' => '4444333322221111',
        'cvv' => '123',
    ]),
    'email' => '[email protected]',
    'order_id' => 'cba',
])->send();

// Charge using a card
/* @var \Omnipay\Rdp\Message\PurchaseResponse $response */
$response = $gateway->purchase([
    'card' => new CreditCard([
        'firstName' => 'John',
        'lastName' => 'Doe',
        'expiryMonth' => '09',
        'expiryYear' => '2029',
        'number' => '4444333322221111',
        'cvv' => '123',
    ]),
    'payer_id' => $response->payer_id,
    'payer_name' => 'John Doe',
    'payer_email' => '[email protected]',
    'orderId' => 'abc',
    'money' => new Money(100, new Currency('SGD')),
])->send();