This is a library willing to help you to integrate the Vodacom M-Pesa operations to your application.
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
- PHP 7.2+
- Composer
- Valid credentials obtained from the Mpesa Developer portal
- Port 18352 open on your server (usually open on local env)
composer require paymentsds/mpesa
git clone https://github.com/paymentsds/mpesa-php-sdk mpesa-php-sdk
cd mpesa-php-sdk
composer install
Using this SDK is very simple and fast, let us see some examples:
use Paymentsds\MPesa\Client;
$client = new Client([
'apiKey' => '<REPLACE>', // API Key
'publicKey' => '<REPLACE>', // Public Key
'serviceProviderCode' => '<REPLACE>' // Service Provider Code
]);
$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
}
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
}
$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
}
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
}
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
}
Thank you for considering contributing to this package. If you wish to do it, email us at [email protected] and we will get back to you as soon as possible.
If you discover a security vulnerability, please email us at [email protected] and we will address the issue with the needed urgency.
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.