PHP code example of nekofar / omnipay-yekpay

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

    

nekofar / omnipay-yekpay example snippets


use Omnipay\Omnipay;

$gateway = Omnipay::create('Yekpay');
$this->gateway->setMerchantId('XXXXXXXXXXXXXXXXXXXX');
$this->gateway->setReturnUrl('https://example.com/callback.php');

// Send purchase request
$response = $gateway->purchase([
    'amount' => 799.00,
    'fromCurrencyCode' => 978,
    'toCurrencyCode' => 364,
    'orderNumber' => 125548,
    'firstName' => 'John',
    'lastName' => 'Doe',
    'email' => '[email protected]',
    'mobile' => '+44123456789',
    'address' => 'Alhamida st Al ras st',
    'postalCode' => '64785',
    'country' => 'United Arab Emirates',
    'city' => 'Dubai',
    'description' => 'Apple mac book air 2017',
])->send();

// Process response
if ($response->isRedirect()) {
    // Redirect to offsite payment gateway
    $response->redirect();
} else {
    // Payment failed: display message to customer
    echo $response->getMessage();
}

// Send purchase complete request
$response = $gateway->completePurchase([
    'authority' => $_REQUEST['authority'], 
)->send();

// Process response
if ($response->isSuccessful()) {
    // Payment was successful
    print_r($response);
} else {
    // Payment failed: display message to customer
    echo $response->getMessage();
}