paymentsds/mpesa
Composer 安装命令:
composer require paymentsds/mpesa
包简介
PHP client library for MPesa API
README 文档
README
This is a library willing to help you to integrate the Vodacom M-Pesa operations to your application.
Features
Using this library, you can implement the following operations:
- Receive money from a mobile account to a business account (C2B)
- Send money from a business account to a mobile account (B2C)
- Send money from a business account to another business account (B2B)
- Revert any of the transactions above mentioned
- Query the status of a transaction
Requirements
- PHP 7.2+
- Composer
- Valid credentials obtained from the Mpesa Developer portal
- Port 18352 open on your server (usually open on local env)
Installation
Using Composer
composer require paymentsds/mpesa
Manual Installation
git clone https://github.com/paymentsds/mpesa-php-sdk mpesa-php-sdk
cd mpesa-php-sdk
composer install
Usage
Using this SDK is very simple and fast, let us see some examples:
C2B Transaction (Receive money from mobile account)
use Paymentsds\MPesa\Client; use Paymentsds\MPesa\Environment; $client = new Client([ 'apiKey' => '<REPLACE>', // API Key 'publicKey' => '<REPLACE>', // Public Key 'serviceProviderCode' => '<REPLACE>' // Service Provider Code 'environment' => Environment::SANDBOX // Environment. Use Environment::PRODUCTION for production ]); $paymentData = [ 'from' => '841234567', // Customer MSISDN 'reference' => '11114', // Third Party Reference 'transaction' => 'T12344CC', // Transaction Reference 'amount' => '10' // Amount ]; $result = $client->receive($paymentData); if ($result->success) { // Handle success } else { // Handle failure }
B2C Transaction (Sending money to mobile account)
use Paymentsds\MPesa\Client; $client = new Client([ 'apiKey' => '<REPLACE>', // API Key 'publicKey' => '<REPLACE>', // Public Key 'serviceProviderCode' => '<REPLACE>' // Service Provider Code ]); $paymentData = [ 'to' => '841234567', // Customer MSISDN 'reference' => '11114', // Third Party Reference 'transaction' => 'T12344CC', // Transaction Reference 'amount' => '10' // Amount ]; $result = $client->send($paymentData); if ($result->success) { // Handle success scenario } else { // Handle failure scenario }
B2B Transaction (Sending money to business account)
$client = new Client([ 'apiKey' => '<REPLACE>', // API Key 'publicKey' => '<REPLACE>', // Public Key 'serviceProviderCode' => '<REPLACE>' // Service Provider Code ]); $paymentData = [ 'from' => '979797', // Receiver Party Code 'reference' => '11114', // Third Party Reference 'transaction' => 'T12344CC', // Transaction Reference 'amount' => '10' // Amount ]; $result = $client->send($paymentData) if ($result->success) { // Handle success scenario } else { // Handle failure scenario }
Transaction Reversal
use Paymentsds\MPesa\Client; $client = new Client([ 'apiKey' => '<REPLACE>', // API Key 'publicKey' => '<REPLACE>', // Public Key 'serviceProviderCode' => '<REPLACE>', // Service Provider Code 'initiatorIdentifier' => '<REPLACE>', // Initiator Identifier 'securityIdentifier' => '<REPLACE>' // Security Credential ]); $paymentData = [ 'reference' => '11114', // Third Party Reference 'transaction' => 'T12344CC', // Transaction Reference 'amount' => '10' // Amount ]; $result = $client->revert($paymentData); if ($result->success) { // Handle success scenario } else { // Handle failure scenario }
Query the transaction status
use Paymentsds\MPesa\Client; $client = new Client([ 'apiKey' => '<REPLACE>', // API Key 'publicKey' => '<REPLACE>', // Public Key 'serviceProviderCode' => '<REPLACE>' // Service Provider Code ]); $paymentData = [ 'subject' => '11114', // Query Reference 'transaction' => 'T12344CC', // Transaction Reference ]; $result = $client->query($paymentData); if ($result->success) { // Handle success scenario } else { // Handle failure scenario }
Friends
Authors
Contributing
Thank you for considering contributing to this package. If you wish to do it, email us at developers@paymentsds.org and we will get back to you as soon as possible.
Security Vulnerabilities
If you discover a security vulnerability, please email us at developers@paymentsds.org and we will address the issue with the needed urgency.
License
Copyright 2020 © The PaymentsDS Team
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
paymentsds/mpesa 适用场景与选型建议
paymentsds/mpesa 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.98k 次下载、GitHub Stars 达 42, 最近一次更新时间为 2020 年 07 月 28 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 paymentsds/mpesa 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 paymentsds/mpesa 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 2.98k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 42
- 点击次数: 15
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2020-07-28