PHPackages                             devcbh/sms-wrapper - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. devcbh/sms-wrapper

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

devcbh/sms-wrapper
==================

A Laravel wrapper for sending SMS

1.0.3(3mo ago)0226↓50%proprietaryPHPPHP ^8.2

Since Feb 11Pushed 3mo agoCompare

[ Source](https://github.com/devcbh/pisopay-sms-wrapper)[ Packagist](https://packagist.org/packages/devcbh/sms-wrapper)[ RSS](/packages/devcbh-sms-wrapper/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)Dependencies (4)Versions (5)Used By (0)

SMS Wrapper for Pisopay
=======================

[](#sms-wrapper-for-pisopay)

A Laravel wrapper for sending SMS via Macrokiosk, built for speed and concurrency.

Installation
------------

[](#installation)

```
composer require devcbh/sms-wrapper
```

Configuration
-------------

[](#configuration)

Publish the configuration file:

```
php artisan vendor:publish --provider="Devcbh\SmsWrapper\SmsServiceProvider" --tag="config"
```

Then, set your environment variables in `.env`:

```
PISOPAY_SMS_DOMAIN=https://your-api-domain.com
PISOPAY_SMS_OVERRIDE_PASS=your-override-pass
```

Usage
-----

[](#usage)

### Sending a Single SMS

[](#sending-a-single-sms)

```
use Devcbh\SmsWrapper\Facades\Sms;

$response = Sms::send('09990000000', 'Hello Team');

if ($response->successful()) {
    // SMS sent successfully
}
```

### Sending Concurrent SMS (Blazing Fast)

[](#sending-concurrent-sms-blazing-fast)

```
use Devcbh\SmsWrapper\Facades\Sms;

$messages = [
    ['mobile_number' => '09990000000', 'message' => 'OTP: 1234'],
    ['mobile_number' => '09990000000', 'message' => 'OTP: 5678'],
];

$responses = Sms::sendConcurrent($messages);

foreach ($responses as $response) {
    if ($response->successful()) {
        // Handle success
    }
}
```

###  Health Score

40

—

FairBetter than 88% of packages

Maintenance82

Actively maintained with recent releases

Popularity16

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

4

Last Release

97d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/bf7092336b804b46716d5479a5d462792084005b8f645015a86d4cd43680056a?d=identicon)[devcbh](/maintainers/devcbh)

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/devcbh-sms-wrapper/health.svg)

```
[![Health](https://phpackages.com/badges/devcbh-sms-wrapper/health.svg)](https://phpackages.com/packages/devcbh-sms-wrapper)
```

###  Alternatives

[stevebauman/location

Retrieve a user's location by their IP Address

1.3k7.6M65](/packages/stevebauman-location)[nativephp/mobile

NativePHP for Mobile

82724.0k43](/packages/nativephp-mobile)[bensampo/laravel-embed

Painless responsive embeds for videos, slideshows and more.

142146.8k](/packages/bensampo-laravel-embed)[glhd/conveyor-belt

14797.0k](/packages/glhd-conveyor-belt)[pulkitjalan/ip-geolocation

IP Geolocation Wrapper with Laravel Support

89164.9k1](/packages/pulkitjalan-ip-geolocation)[flarum/core

Delightfully simple forum software.

211.3M1.9k](/packages/flarum-core)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
