answear / pay-po
PayPo PHP 库。
4.0.1
2024-09-12 08:19 UTC
Requires
- php: ^8.1
- ext-json: *
- guzzlehttp/guzzle: ^6.0|^7.0
- marc-mabe/php-enum: ^4.3
- symfony/property-access: 6.4.*
- symfony/serializer: 6.4.*
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.58
- phpro/grumphp: ^v2.5
- phpstan/phpstan: ^1.11
- phpstan/phpstan-webmozart-assert: ^1.0
- phpunit/phpunit: ^9.5
- roave/security-advisories: dev-latest
- symfony/phpunit-bridge: 6.4.*
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 团队将感激任何评论。