cynojine / zmtnmomo
There is no license information available for the latest version (v1.0.0) of this package.
MTNMOMO api Library
v1.0.0
2020-04-23 18:13 UTC
Requires
- guzzlehttp/guzzle: ^6.3
- ramsey/uuid: ^3.8
This package is auto-updated.
Last update: 2025-03-29 00:37:55 UTC
README
MomoPay library in PHP for the MTN MobileMoney. Developers can integrate into their apps.
Product support
- Collections
- Disbursements
- Remittances
To Get Started
- Signup For A developer portal Account and Register
Subscribe To Any Of The Products
- Collections
- Disbursements
- Remittances
Generate UUID
To Generate UUID Go to This link UUID-Generator
Installation
Add the Autoload Path to get access to the MomoPay Library
<?php require 'vendor/autoload.php';
<?php use Cynojine\Mtnmomo\Products\Collection; $options = [ 'subscriptionKey' => '', //Add Subscription key 'xReferenceId' => '', //Api user reference id (in UUID format) Generate your UUID https://www.uuidgenerator.net/ 'apiKey' => '', // Api user key (Supply this after generating it ]; // collection $collection = Collection::create($options);