1. Go to this page and download the library: Download payboxmoney/pay 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/ */
payboxmoney / pay example snippets
use Paybox\Pay\Facade as Paybox;
$paybox = new Paybox();
$paybox->merchant->id = 123456;
$paybox->merchant->secretKey = 'asflerjgsdfv';
$paybox->order->description = 'test order';
$paybox->order->amount = 100;
if($paybox->init()) {
header('Location:' . $paybox->redirectUrl);
use Paybox\Pay\Facade as Paybox;
$paybox = new Paybox();
$paybox->getMerchant()->setId(123456);
$paybox->getMerchant()->setSecretKey('asflerjgsdfv');
$paybox->getOrder()->setAmount(100);
$paybox->getOrder()->setDescription('test order');
if($paybox->init()) {
header('Location:' . $paybox->redirectUrl);
use Paybox\Pay\Facade as Paybox;
$paybox = new Paybox();
$merchant = $paybox->getMerchant();
$merchant->setId(123456);
$merchant->setSecretKey('asflerjgsdfv');
$order = $paybox->getOrder();
$order->setAmount(100);
$order->setDescription('test order');
if($paybox->init()) {
header('Location:' . $paybox->redirectUrl);
use Paybox\Pay\Facade as Paybox;
$paybox = new Paybox();
$paybox->merchant->id = 123456;
$paybox->merchant->secretKey = 'asflerjgsdfv';
//If You have a ID of payment and it status is success
//You can initialize the clearing operation using capture() method
$paybox->payment->id = 12345;
$result = $paybox->capture();
~~~
### Запрос на получение статуса платежа
[Подробное описание](https://paybox.money/docs/ru/pay-in/3.3#tag/Vspomogatelnye-zaprosy/paths/~1get_status.php/post)
#### Пример:
~~~php
use Paybox\Pay\Facade as Paybox;
$paybox = new Paybox();
//set rchant->id = 123456;
$paybox->merchant->secretKey = 'asflerjgsdfv';
$paybox->order->amount = 100;
$paymentSystems = $paybox->getPaymentSystems();
~~~
### Отмена платежа до оплаты
[Подробное описание](https://paybox.money/docs/ru/pay-in/3.3#tag/Vspomogatelnye-zaprosy/paths/~1cancel.php/post)
#### Пример:
~~~php
use Paybox\Pay\Facade as Paybox;
$paybox = new Paybox();
$paybox->merchant->id = 123456;
$paybox->merchant->secretKey = 'asflerjgsdfv';
$request = (array_key_exists('pg_xml', $_REQUEST))
? $paybox->parseXML($_REQUEST)
: $_REQUEST;
$result = $paybox->cancelBill();
~~~
### Отмена платежа после оплаты
[Подробное описание](https://paybox.money/docs/ru/pay-in/3.3#tag/Vspomogatelnye-zaprosy/paths/~1revoke.php/post)
#### Пример:
~~~php
use Paybox\Pay\Facade as Paybox;
$paybox = new Paybox();
//set
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.