PHP code example of hachther / mesomb-php

1. Go to this page and download the library: Download hachther/mesomb-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/ */

    

hachther / mesomb-php example snippets







use MeSomb\Operation\PaymentOperation;

$applicationKey = 'application key';
$accessKey = 'access key';
$secretKey = 'secret key';
$client = new PaymentOperation($applicationKey, $accessKey, $secretKey);

$response = $client->makeCollect([
    'payer' => '670000000',
    'amount' => 10000,
    'service' => 'MTN',
    'country' => 'CM',
    'currency' => 'XAF',
    'customer' => [
        'email' => '[email protected]',
        'first_name' => 'Dan',
        'last_name' => 'Fisher',
        'town' => 'Douala',
        'region' => 'Littoral',
        'country' => 'CM',
        'address' => 'Bepanda',
    ],
    'products' => [
        [
            'id' => 'SKU001',
            'name' => 'Sac a Dos',
            'category' => 'Sac',
            'quantity' => 1,
            'amount' => 10000
        ]
    ],
    'location' => [
        'town' => 'Douala',
        'region' => 'Littoral',
        'country' => 'CM'
    ]
]);
$response->isOperationSuccess();
$response->isTransactionSuccess();


use MeSomb\Operation\PaymentOperation;

$applicationKey = 'application key';
$accessKey = 'access key';
$secretKey = 'secret key';
$client = new PaymentOperation($applicationKey, $accessKey, $secretKey);

$response = $client->makeDeposit([
    'receiver' => '670000000',
    'amount' => 10000,
    'service' => 'MTN',
    'country' => 'CM',
    'currency' => 'XAF',
    'customer' => [
        'email' => '[email protected]',
        'first_name' => 'Dan',
        'last_name' => 'Fisher',
        'town' => 'Douala',
        'region' => 'Littoral',
        'country' => 'CM',
        'address' => 'Bepanda',
    ],
    'products' => [
        [
            'id' => 'SKU001',
            'name' => 'Sac a Dos',
            'category' => 'Sac',
            'quantity' => 1,
            'amount' => 10000
        ]
    ],
    'location' => [
        'town' => 'Douala',
        'region' => 'Littoral',
        'country' => 'CM'
    ]
]);
$response->isOperationSuccess();
$response->isTransactionSuccess();


use MeSomb\Operation\PaymentOperation;
use MeSomb\Util\RandomGenerator;

$client = new PaymentOperation('<applicationKey>', '<AccessKey>', '<SecretKey>');
$application = $client->getStatus();
print_r($application->getStatus());
print_r($application->getBalance());


use MeSomb\Operation\PaymentOperation;

$applicationKey = 'application key';
$accessKey = 'access key';
$secretKey = 'secret key';
$client = new PaymentOperation($applicationKey, $accessKey, $secretKey);
$response = $client->getTransactions(['a483a9e8-51d7-44c9-875b-1305b1801274']);
print_r($response);