answear/pay-po

PayPo PHP 库。

4.0.1 2024-09-12 08:19 UTC

This package is auto-updated.

Last update: 2024-09-12 08:19:44 UTC


README

API 文档可以在此处找到: https://paypo.pl/home/integracja.

安装

  • 使用 Composer 安装
composer require answear/pay-po

用法

use Answear\PayPo\Configuration\PayPoConfiguration;
use Answear\PayPo\Request\Transaction\CreateRequest;
use Answear\PayPo\Service\Order;
//...

PayPoConfiguration::setForSandbox(6, 'apiKey');

$orderService = new Order();
$registerResponse = $orderService->create(new CreateRequest(...));

$redirectUrl = $registerResponse->redirectUrl;
//...

//others requests
$orderService->confirm('transaction-uuid');
$orderService->refund('transaction-uuid', 123);
$orderService->getStatusDetails('transaction-uuid');
$orderService->cancel('transaction-uuid');

最后注意

欢迎提交带有新功能、改进或错误修复的拉取请求。Answear 团队将感激任何评论。