yts/fingpay 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

yts/fingpay

最新稳定版本:v1.0.0

Composer 安装命令:

composer require yts/fingpay

包简介

PHP client for Fingpay API with AES-256-GCM encryption and UPI/PG link generation

README 文档

README

Fingpay PHP library to integrate UPI / NEFT / RTGS using virtual accounts, using dynamic and static QR codes for UPI payments

Fingpay PHP Client

A PHP client for the Fingpay API that supports:

  • AES-256-GCM encryption/decryption
  • UPI and PG link generation
  • API calls for UPI request, history, and status checks

Installation

composer require yts/fingpay

Usage

<?php
require __DIR__ . '/vendor/autoload.php';

use Yts\Fingpay\FingpayClient;

$config = [
    'base_url'        => 'https://fingpay.example.com',
    'security_key'    => 'your_security_key',
    'pre_shared_key'  => 'your_pre_shared_key',
    'distributor_id'  => '1234',
    'api_key'         => 'your_api_key',
];

$fingpay = new FingpayClient($config);

// Create UPI request
$response = $fingpay->createUpiRequest([
    'amount' => '100',
    'vpa' => 'test@upi',
]);

print_r($response);

License

MIT

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-08-11