openpesa/laravel-pesa

Easy OpenAPI integration for Laravel Apps

v1.0.2 2022-03-03 15:54 UTC

This package is auto-updated.

Last update: 2024-04-25 19:28:26 UTC


README

Latest Version on Packagist Total Downloads

Laravel pesa

Offers effortless integration with mobile money operators, such as Vodacom's M-Pesa, for seamless inclusion in your Laravel applications. 💰

View Demo · Report Bug · Request Feature

Documentation

🚧 Work in Progress

For detailed instructions on package usage, please refer to the example readme available here.

🚀 Installation

You can install the package via Composer:

composer require openpesa/laravel-pesa

💼 Usage

Using Facades

use Openpesa\Pesa\Facades\Pesa;

// This route will be mapped to: `your-URL/api/charge`
Route::get('/charge', function () {
    $response = Pesa::c2b([
        'input_Amount' => 5000, // Amount to be charged
        'input_Country' => 'TZN',
        'input_Currency' => 'TZS',
        'input_CustomerMSISDN' => '000000000001', // Replace with your phone number
        'input_ServiceProviderCode' => '000001', // Replace with your service provider code given by M-Pesa
        'input_ThirdPartyConversationID' => 'mpesatz', // Unique
        'input_TransactionReference' => 'imethibitishwa', // Unique
        'input_PurchasedItemsDesc' => 'Item description'
    });

    return $response;
});

💼 Usage

composer test

📜 Changelog

Please see CHANGELOG for more information on what has changed recently.

🤝 Contributing

Please see CONTRIBUTING for details.

🔐 Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

👥 Credits

📄 License

The MIT License (MIT). Please see License File for more information.