PHP code example of valiton / payum-payone

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

    

valiton / payum-payone example snippets

?start_inline=1
use Payum\Core\GatewayFactoryInterface;
use Valiton\Payum\Payone\PayoneGatewayFactory;

$payumBuilder->addGatewayFactory('payone', function(array $config, GatewayFactoryInterface $coreGatewayFactory) {
    return new PayoneGatewayFactory($config, $coreGatewayFactory);
});

$payumBuilder->addGateway('payone', [
    'factory' => 'payone',
    'merchant_id' => 123456, // change this
    'sub_account_id' => 567890 // change this
    'portal_id' => 6543276, // change this
    'key' => '1Q2W3E4R5T6' // change this
]);
?start_inline=1
$payment = new Payment();
$payment->setDetails([
    // add 

$gateway = $this->get('payum')->getGeteway('payone');