lepresk/momo-api
Composer 安装命令:
composer require lepresk/momo-api
包简介
PHP library for MTN Mobile Money (MoMo) API. Receive payments (Collection), send money (Disbursement), and manage mobile transactions in Africa.
关键字:
README 文档
README
A powerful and professional PHP wrapper for integrating MTN Mobile Money and Airtel Money APIs. Supports Collection (receive payments) and Disbursement (send money) operations.
Features
| Provider | Product | Supported Operations |
|---|---|---|
| MTN MoMo | Collection | Request payments, Check payment status, Check account holder, Get balance |
| MTN MoMo | Disbursement | Transfer money, Deposit funds, Process refunds, Check account holder, Get balance |
| MTN MoMo | Sandbox | Create API users, Generate API keys, Test environment support |
| Airtel Money | Collection | Request payments, Check payment status, Get balance |
| Airtel Money | Disbursement | Transfer money, Check transfer status, Get balance |
Requirements
- PHP 8.2 or higher
- MTN MoMo Developer Account (Sign up) and/or Airtel Money API credentials
Installation
composer require lepresk/momo-api
Quick Start
Collection API (Receive Payments)
<?php use Lepresk\MomoApi\MomoApi; // Simple fluent configuration $collection = MomoApi::collection([ 'environment' => 'sandbox', // or 'mtncongo', 'mtnuganda', etc. 'subscription_key' => 'YOUR_SUBSCRIPTION_KEY', 'api_user' => 'YOUR_API_USER', 'api_key' => 'YOUR_API_KEY', 'callback_url' => 'https://yourdomain.com/callback' ]); // Quick payment - 3 parameters $paymentId = $collection->quickPay('1000', '242068511358', 'ORDER-123'); // Check payment status $transaction = $collection->getPaymentStatus($paymentId); if ($transaction->isSuccessful()) { echo "Payment of {$transaction->getAmount()} received!"; }
Disbursement API (Send Money)
<?php use Lepresk\MomoApi\MomoApi; use Lepresk\MomoApi\Models\TransferRequest; $disbursement = MomoApi::disbursement([ 'environment' => 'sandbox', 'subscription_key' => 'YOUR_SUBSCRIPTION_KEY', 'api_user' => 'YOUR_API_USER', 'api_key' => 'YOUR_API_KEY', 'callback_url' => 'https://yourdomain.com/callback' ]); // Transfer money to a beneficiary $transfer = TransferRequest::make('5000', '242068511358', 'SALARY-001'); $transferId = $disbursement->transfer($transfer); // Check transfer status $result = $disbursement->getTransferStatus($transferId);
Sandbox Setup
<?php use Lepresk\MomoApi\MomoApi; use Lepresk\MomoApi\Utilities; $momo = MomoApi::create(MomoApi::ENVIRONMENT_SANDBOX); $subscriptionKey = 'YOUR_SANDBOX_SUBSCRIPTION_KEY'; // 1. Create API User $uuid = Utilities::guidv4(); $callbackHost = 'https://yourdomain.com/callback'; $apiUser = $momo->sandbox($subscriptionKey)->createApiUser($uuid, $callbackHost); // 2. Create API Key $apiKey = $momo->sandbox($subscriptionKey)->createApiKey($apiUser); // Now use these credentials for Collection/Disbursement
Advanced Usage
Collection API - Full Example
use Lepresk\MomoApi\MomoApi; use Lepresk\MomoApi\Models\PaymentRequest; $collection = MomoApi::collection([ 'environment' => 'mtncongo', 'subscription_key' => env('MOMO_SUBSCRIPTION_KEY'), 'api_user' => env('MOMO_API_USER'), 'api_key' => env('MOMO_API_KEY'), 'callback_url' => 'https://yourdomain.com/webhook/momo' ]); // Custom payment request $request = new PaymentRequest( amount: '2500', currency: 'XAF', externalId: 'ORDER-456', payer: '242068511358', payerMessage: 'Payment for order #456', payeeNote: 'Thank you for your purchase' ); $paymentId = $collection->requestToPay($request); // Get account balance $balance = $collection->getBalance(); echo "Available: {$balance->getAvailableBalance()} {$balance->getCurrency()}";
Disbursement API - Full Example
use Lepresk\MomoApi\MomoApi; use Lepresk\MomoApi\Models\TransferRequest; use Lepresk\MomoApi\Models\RefundRequest; $disbursement = MomoApi::disbursement([...config...]); // Transfer $transfer = new TransferRequest( amount: '10000', currency: 'XAF', externalId: 'PAYOUT-789', payee: '242068511358', payerMessage: 'Monthly salary', payeeNote: 'Salary payment for June' ); $transferId = $disbursement->transfer($transfer); // Refund $refund = RefundRequest::make('1000', $originalTransactionId, 'REFUND-123'); $refundId = $disbursement->refund($refund); // Check balance $balance = $disbursement->getBalance();
Airtel Money
Airtel Collection API (Receive Payments)
<?php use Lepresk\MomoApi\AirtelApi; use Lepresk\MomoApi\Models\AirtelConfig; $collection = AirtelApi::collection('staging', AirtelConfig::collection( clientId: 'YOUR_CLIENT_ID', clientSecret: 'YOUR_CLIENT_SECRET', )); // Request a payment $externalId = $collection->requestToPay('5000', '068511358', 'ORDER-001'); // Check payment status $transaction = $collection->getPaymentStatus($externalId); if ($transaction->isSuccessful()) { echo "Payment received! Airtel Money ID: " . $transaction->getAirtelMoneyId(); } elseif ($transaction->isPending()) { echo "Payment pending..."; } // Check balance $balance = $collection->getBalance(); echo "Available: {$balance->getAvailableBalance()} {$balance->getCurrency()}";
Airtel Disbursement API (Send Money)
<?php use Lepresk\MomoApi\AirtelApi; use Lepresk\MomoApi\Models\AirtelConfig; $disbursement = AirtelApi::disbursement('production', AirtelConfig::disbursement( clientId: 'YOUR_CLIENT_ID', clientSecret: 'YOUR_CLIENT_SECRET', encryptedPin: 'YOUR_ENCRYPTED_PIN', )); // Transfer money $externalId = $disbursement->transfer('10000', '068511358', 'PAY-001'); // Check transfer status $transaction = $disbursement->getTransferStatus($externalId); if ($transaction->isSuccessful()) { echo "Transfer completed!"; }
Airtel Environments
| Mode | URL | Use Case |
|---|---|---|
staging |
https://openapiuat.airtel.cg |
Testing |
production |
https://openapi.airtel.cg |
Production - Congo |
Handling Callbacks
<?php use Lepresk\MomoApi\Models\Transaction; // Parse callback data $transaction = Transaction::parse($_GET); if ($transaction->isSuccessful()) { // Update your database $orderId = $transaction->getExternalId(); $amount = $transaction->getAmount(); // Process order... } elseif ($transaction->isFailed()) { $reason = $transaction->getReason(); echo "Failed: {$reason->getCode()} - {$reason->getMessage()}"; }
Error Handling
use Lepresk\MomoApi\Exceptions\ResourceNotFoundException; use Lepresk\MomoApi\Exceptions\InternalServerErrorException; use Lepresk\MomoApi\Models\ErrorReason; try { $paymentId = $collection->quickPay('1000', '242068511358', 'ORDER-999'); } catch (ResourceNotFoundException $e) { // Payment not found echo "Error: " . $e->getMessage(); } catch (InternalServerErrorException $e) { // Server error echo "Server error, please retry"; } // Check error reason from transaction $transaction = $collection->getPaymentStatus($paymentId); if ($transaction->isFailed()) { $reason = $transaction->getReason(); if ($reason->isNotEnoughFunds()) { echo "Insufficient funds"; } elseif ($reason->isPayerLimitReached()) { echo "Transaction limit exceeded"; } }
Available Environments
| Constant | Value | Use Case |
|---|---|---|
ENVIRONMENT_SANDBOX |
sandbox | Testing |
ENVIRONMENT_MTN_CONGO |
mtncongo | Production - Congo |
ENVIRONMENT_MTN_UGANDA |
mtnuganda | Production - Uganda |
ENVIRONMENT_MTN_GHANA |
mtnghana | Production - Ghana |
ENVIRONMENT_IVORY_COAST |
mtnivorycoast | Production - Ivory Coast |
ENVIRONMENT_ZAMBIA |
mtnzambia | Production - Zambia |
ENVIRONMENT_CAMEROON |
mtncameroon | Production - Cameroon |
ENVIRONMENT_BENIN |
mtnbenin | Production - Benin |
ENVIRONMENT_SWAZILAND |
mtnswaziland | Production - Swaziland |
ENVIRONMENT_GUINEACONAKRY |
mtnguineaconakry | Production - Guinea Conakry |
ENVIRONMENT_SOUTHAFRICA |
mtnsouthafrica | Production - South Africa |
ENVIRONMENT_LIBERIA |
mtnliberia | Production - Liberia |
API Reference
Collection API
| Method | Description |
|---|---|
requestToPay(PaymentRequest $request) |
Request payment from customer |
quickPay(string $amount, string $phone, string $ref) |
Quick payment helper |
getPaymentStatus(string $paymentId) |
Check payment status |
checkAccountHolder(string $phone) |
Check if MSISDN is active |
getBalance() |
Get account balance |
getAccessToken() |
Get OAuth token (auto-managed) |
Disbursement API
| Method | Description |
|---|---|
transfer(TransferRequest $request) |
Transfer money to beneficiary |
getTransferStatus(string $transferId) |
Check transfer status |
deposit(PaymentRequest $request) |
Deposit funds |
getDepositStatus(string $depositId) |
Check deposit status |
refund(RefundRequest $request) |
Refund a transaction |
getRefundStatus(string $refundId) |
Check refund status |
checkAccountHolder(string $phone) |
Check if MSISDN is active |
getBalance() |
Get account balance |
getAccessToken() |
Get OAuth token (auto-managed) |
Airtel Collection API
| Method | Description |
|---|---|
requestToPay(string $amount, string $phone, string $reference) |
Request payment from customer |
getPaymentStatus(string $externalId) |
Check payment status (returns AirtelTransaction) |
getBalance() |
Get account balance |
getAccessToken() |
Get OAuth token (cached automatically) |
Airtel Disbursement API
| Method | Description |
|---|---|
transfer(string $amount, string $phone, string $reference) |
Transfer money (requires encryptedPin) |
getTransferStatus(string $externalId) |
Check transfer status (returns AirtelTransaction) |
getBalance() |
Get account balance |
getAccessToken() |
Get OAuth token (cached automatically) |
Sandbox API
| Method | Description |
|---|---|
createApiUser(string $uuid, string $callback) |
Create sandbox API user |
getApiUser(string $uuid) |
Get API user details |
createApiKey(string $uuid) |
Generate API key |
Testing
The package includes two types of tests:
Unit Tests - Fast tests with mocked HTTP responses:
composer test # or run specific suite vendor/bin/phpunit --testsuite Unit
Fixture Tests - Validate parsing of real MTN API responses:
vendor/bin/phpunit --testsuite Fixtures
Run PHPStan analysis:
composer phpstan
Production Notes
- Never hardcode credentials - Use environment variables
- Validate callbacks - Check transaction status via API, not just callback data
- Handle webhooks asynchronously - Process in background queue
- Log all transactions - Keep audit trail
- Test thoroughly in sandbox before going live
Ecosystem
The same client is available for multiple languages:
| Language | Package | Install |
|---|---|---|
| PHP | lepresk/momo-api |
composer require lepresk/momo-api |
| Node.js / TypeScript | @lepresk/momo-api |
npm install @lepresk/momo-api |
| Python | mtn-momo-client |
pip install mtn-momo-client |
Contributing
Contributions are welcome! See CONTRIBUTING.md for guidelines.
Changelog
See CHANGELOG.md for the full history of changes.
License
MIT License - see LICENSE file for details.
Support
- Documentation: MTN MoMo Developer Portal
- Issues: GitHub Issues
lepresk/momo-api 适用场景与选型建议
lepresk/momo-api 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 230 次下载、GitHub Stars 达 11, 最近一次更新时间为 2023 年 07 月 05 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「payment」 「collection」 「transfer」 「payment gateway」 「mobile money」 「mtn」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 lepresk/momo-api 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 lepresk/momo-api 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 lepresk/momo-api 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Przelewy24 driver for the Omnipay payment processing library
This package provides type-safe extension of the laravel collection, forcing a single type of object.
Dibs D2 driver for the Omnipay payment processing library
Traits to build collections of specific objects
ItalyStrap Helpers
Fill Dtos with data using the mapping. Also allows rendering to different array key formats.
统计信息
- 总下载量: 230
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 11
- 点击次数: 23
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-07-05