PHP code example of remeni / wallets-africa-php

1. Go to this page and download the library: Download remeni/wallets-africa-php library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

remeni / wallets-africa-php example snippets




use Remeni\WalletsAfrica\Configuration;
use Remeni\WalletsAfrica\ApiException;
use Remeni\WalletsAfrica\WalletsAfrica;

$configuration = new Configuration([
    'publicKey' => 'YOUR_PUBLIC_KEY',
    'secretKey' => 'YOUR_SECRET_KEY',
    'currency' => 'NGN'
]);
$client = new WalletsAfrica($configuration);

try {
    $response = $client->account->checkBalance();

    if ($response->getStatusCode() == 200) {
        // Successful
    }
} catch (ApiException $e) {
    if ($e->getResponseBody()) {
        // No response from the server
    } else {
        // Response was returned from the server
    }
}
bash
composer