surjowallet / php-sdk
Surjo Wallet PHP SDK
1.0.2
2026-05-26 21:07 UTC
Requires
- php: ^8.1
- ext-curl: *
README
Official PHP SDK for Surjo Wallet Payment Gateway.
Installation
composer require surjowallet/php-sdk
Usage
use SurjoWallet\Client; $client = new Client([ 'store_id' => 'STORE_ID', 'api_key' => 'API_KEY', 'secret_key' => 'SECRET_KEY', ]); $response = $client->createPayment([ 'amount' => 100, 'tran_id' => 'INV001', ]);