1. Go to this page and download the library: Download pczyzyk/payum-przelewy24 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/ */
pczyzyk / payum-przelewy24 example snippets
use Payum\Core\PayumBuilder;
use Payum\Core\GatewayFactoryInterface;
$defaultConfig = [];
$payum = (new PayumBuilder)
->addGatewayFactory('paypal', function(array $config, GatewayFactoryInterface $coreGatewayFactory) {
return new \Acme\Paypal\PaypalGatewayFactory($config, $coreGatewayFactory);
})
->addGateway('paypal', [
'factory' => 'paypal',
'sandbox' => true,
])
->getPayum()
;
use Payum\Core\Request\Capture;
$paypal = $payum->getGateway('paypal');
$model = new \ArrayObject([
// ...
]);
$paypal->execute(new Capture($model));
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.