jonathanitakpe/payantng-php

A PHP Wrapper for the PayantNG API

0.1.4 2017-06-09 18:38 UTC

This package is not auto-updated.

Last update: 2024-06-07 21:30:20 UTC


README

PHP Library for PayantNG

How to Use

Require the package from Packagist - composer require jonathanitakpe/payantng-php

Function Naming Convention

Functions are named based on the documentation located https://developers.payant.ng/overview

Add Client from the documentation becomes $Payant->addClient() as in the sample code below:

Sample code

<?php
require_once 'vendor/autoload.php';
use PayantNG\Payant;

$Payant = new Payant\Payant('13337b87ee76gew87fg87gfweugf87w7ge78f229c');
$client_deet = ['first_name' => 'Jonathan',
				'last_name' => 'Itakpe',
				'email' => 'jonathan@floatr.com.ng',
				'phone' => '+234809012345'];

$Payant->addClient($client_deet);
 ?>