PHP code example of lemonstand / omnipay-elavon

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

    

lemonstand / omnipay-elavon example snippets


    $gateway = Omnipay::create('Elavon_Converge');
    $gateway->setMerchantId('[MERCHANT_ID]');
    $gateway->setUsername('[USER_ID]');
    $gateway->setPassword('[USER_PIN]');

    // Test mode hits the demo endpoint.
    $gateway->setTestMode(true);

    try {
        $params = array(
            'amount'                => 10.00,
            'card'                  => $card,
            'ssl_invoice_number'    => 1,
            'ssl_show_form'         => 'false',
            'ssl_result_format'     => 'ASCII',
        );

        $response = $gateway->purchase($params)->send();

        if ($response->isSuccessful()) {
            // successful
        } else {
            throw new ApplicationException($response->getMessage());
        }
    } catch (ApplicationException $e) {
        throw new ApplicationException($e->getMessage());
    }