PHP code example of xentixar / esewa-sdk

1. Go to this page and download the library: Download xentixar/esewa-sdk 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/ */

    

xentixar / esewa-sdk example snippets


use Xentixar\EsewaSdk\Esewa;

$esewa = new Esewa();
$esewa->config('https://your-success-url.com', 'https://your-failure-url.com', 1000.00, 'your-transaction-uuid')

$esewa->init();

$esewa->init(true);

$responseData = $esewa->decode();

$response = $esewa->validate('1000.00', 'your-transaction-uuid', true);
bash
composer dump-autoload