yts/fingpay

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

Maintainers

Package info

github.com/yugtechno/yts-fingpay

pkg:composer/yts/fingpay

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.0.0 2025-08-11 14:22 UTC

This package is auto-updated.

Last update: 2026-04-11 15:57:38 UTC


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