camoo/camoo-pay

CamooPay plugin for mobile Money aggregation

Installs: 164

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:camoo-plugin

1.0.0 2023-05-12 16:39 UTC

This package is auto-updated.

Last update: 2024-03-12 18:23:59 UTC


README

Installation

You can install this plugin into your PHP application using composer.

The recommended way to install composer packages is:

composer require camoo/camoo-pay

Usage

use CamooPay\Exception\CamooPayCashoutException;
use CamooPay\Lib\CashOut;

$cashOut = new CashOut('token', 'secret', 'orange');
$phoneNumber = '690000000';
$amount = 850;
$customerEmail = 'end-customer@email.cm';
        try {
            $payment $cashOut->charge($phoneNumber, $amount, $customerEmail);

        } catch (CamooPayCashoutException $exception) {
            $message = $exception->getMessage();
            echo $message
        }
        
        var_dump($payment);

// Now verify the status
$transactionNumber = $payment['ptn'];
$checkPayment = new \CamooPay\Lib\CheckPayment('token', 'secret');
$verify = $checkPayment->check($transactionNumber);
var_dump($verify);