📌 README.md
A simple PHP SDK for integrating ZenithPay virtual dedicated accounts.
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);