PHP code example of digistorm / omnipay-westpac-payway-rest

1. Go to this page and download the library: Download digistorm/omnipay-westpac-payway-rest 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-westpac-payway-rest example snippets



use Omnipay\WestpacPaywayRest\Gateway;
use Omnipay\Common\Http\Client as OmnipayHttpClient;
use GuzzleHttp\Client as GuzzleHttpClient;

$curlConfig = [
    CURLOPT_SSLVERSION => CURL_SSLVERSION_TLSv1_2,
];
$guzzleClient = new GuzzleHttpClient(['curl' => $curlConfig]);
$omnipayClient = new OmnipayHttpClient($guzzleClient);
$gateway = new Gateway($omnipayClient);