zenithpay / php-zenithpay
PHP SDK for ZenithPay virtual account gateway
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/zenithpay/php-zenithpay
Requires
- php: >=8.0
- ext-curl: *
This package is auto-updated.
Last update: 2025-12-18 17:07:17 UTC
README
📌 README.md
ZenithPay PHP SDK
A simple PHP SDK for integrating ZenithPay virtual dedicated accounts.
Installation
composer require zenithpay/php-zenithpay Usage use ZenithPay\ZenithPayClient; $zenith = new ZenithPayClient("https://zenithpay.ng", "your_secret_key"); $response = $zenith->createDedicatedAccount([ "bvn" => "222123456789", "account_name" => "John INVENTURES LTD", "first_name" => "John", "last_name" => "Doe", "email" => "john@gmail.com", ]); print_r($response);