Search by

ilebora / boracom-php

ILEBORA

PHP SDK for the BoraCom Communications and Payments API

Package info

github.com/ILEBORA/boracom-php

pkg:composer/ilebora/boracom-php

Statistics

Installs: 4

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.1.0 2026-09-22 10:43 UTC

This package is auto-updated.

Last update: 2026-09-22 10:49:29 UTC


README

PHP SDK for the BoraCom Communications and Payments API.

Installation

composer require ilebora/boracom-php

Authentication

$boracom = new \Ilebora\BoraCom\BoraCom( env('BORACOM_API_KEY') );

M-Pesa

$response = $boracom->mpesa()->stkPush([ 'application_id' => 'your_app_id', 'reference' => 'chk_123', 'amount' => 300, 'currency' => 'KES', 'phone' => '254741136255', 'description' => 'Premium Subscription', ]);

Check Payment

$payment = $boracom->payments()->get( 'your_app_id', 'chk_123' );

if ($payment->completed()) { // Payment received }