PHP code example of apanicker / omnipay-psn

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

    

apanicker / omnipay-psn example snippets


use Omnipay\Omnipay;

$gateway = Omnipay::create('PaymentServiceNetwork');

$gateway->initialize([
    'accountId' => 'RXXXXXX',
    'testMode' => false
]);

$formData = [
    'PayerName' => 'John Doe',
    'Address' => '2310  Elliot Avenue',
    'City' => 'Seattle',
    'State' => 'WA',
    'Zip' => '98115',
    'Email' => '[email protected]',
    'Payment_Amount' => '150.00',
    'Customer_Number' => 'C12112'
];

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

if($response->isRedirect()) {
    $response->redirect();
}