Get Started
Installation
php composer.phar require "payum/paypal-pro-checkout-nvp"config.php
<?php
//config.php
use Payum\Core\PayumBuilder;
use Payum\Core\Payum;
/** @var Payum $payum */
$payum = (new PayumBuilder())
->addGateway('gatewayName', [
'factory' => 'paypal_pro_checkout',
'username' => 'REPLACE IT',
'password' => 'REPLACE IT',
'partner' => 'REPLACE IT',
'vendor' => 'REPLACE IT',
'tender' => 'REPLACE IT',
'sandbox' => true
])
->getPayum()
;prepare.php
Supporting Payum
Last updated