承接 piatkowski/przelewy24-php 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

piatkowski/przelewy24-php

最新稳定版本:0.0.1

Composer 安装命令:

composer require piatkowski/przelewy24-php

包简介

Simple class to use P24 REST API

README 文档

README

Simple PHP class to implement Przelewy24 payments using new REST API.

Prerequisities

  • PHP >= 7.4
  • cURL extension
  • no other dependencies...

Installation

composer require piatkowski/przelewy24-php

Example of usage

Create new instance of the P24 Client with authorization data

$client = new \Przelewy24\Przelewy24( [
	'merchantId' => '...',
	'posId'      => '...',
	'crc'        => '...',
	'reportKey'  => '...', // API KEY
	'sandbox'    => true,
] );

Register new transaction. This is minimum required options. You can use pass more parameters (from P24 Docs)

$transaction = $client->transaction( [
	'sessionId'   => '...',
	'amount'      => '...',
	'currency'    => 'PLN',
	'description' => '...',
	'email'       => '...',
	'urlReturn'   => '...',
	'urlStatus'   => '...'
] );

Get Payment URL

$transaction->getRedirectUrl();

Create endpoint to receive notification from P24 API

// get incoming data from php://input
$notification = $client->receiveNotification();

or

// create Notification object from raw data
$notification = $client->createNotification([
    'sessionId'     => '...',
    'amount'        => '...',
    'orderId'       => '...',
    'currency'      => '...', // optional, default: PLN
]);

You can now verify transaction passing Notification object and get API response data

$response   = $client->verify( $notification );
$status     = $response->getStatus();   //HTTP Status Code
$data       = $response->getData();     //Response data object

统计信息

  • 总下载量: 1.26k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 6
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 6
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-01-09