PHP code example of payum-tw / esunbank

1. Go to this page and download the library: Download payum-tw/esunbank 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/ */

    

payum-tw / esunbank example snippets




use Payum\Core\PayumBuilder;
use Payum\Core\GatewayFactoryInterface;

$defaultConfig = [];

$payum = (new PayumBuilder)
    ->addGatewayFactory('esunbank', function(array $config, GatewayFactoryInterface $coreGatewayFactory) {
        return new \PayumTW\Esunbank\EsunbankGatewayFactory($config, $coreGatewayFactory);
    })

    ->addGateway('esunbank', [
        'factory' => 'esunbank',
        // 特店代碼
        'MID'     => '',
        // MAC KEY
        'M'       => '',
        'sandbox' => true,
    ])

    ->getPayum();



use Payum\Core\Request\Capture;

$esunbank = $payum->getGateway('esunbank');

$model = new \ArrayObject([
  // ...
]);

$esunbank->execute(new Capture($model));