PHPackages                             sslw/ismsplus - 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. [API Development](/categories/api)
4. /
5. sslw/ismsplus

ActiveLibrary[API Development](/categories/api)

sslw/ismsplus
=============

SMS sending API.

v2.0(2y ago)2251MITPHPPHP ^7.1|^7.2|^7.3|^8.0

Since Feb 23Pushed 2y ago1 watchersCompare

[ Source](https://github.com/sslw/ismsplus_api)[ Packagist](https://packagist.org/packages/sslw/ismsplus)[ RSS](/packages/sslw-ismsplus/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (1)DependenciesVersions (3)Used By (0)

ISMSPLUS client
===============

[](#ismsplus-client)

ISMSPLUS is a PHP client for sending sms via SSL Wirless SMS gateway.

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

[](#installation)

```
composer require sslw/ismsplus
```

Wait for few minutes. Composer will automatically install this package for your project.

Then run this command

```
php artisan vendor:publish --provider="Ssl\Isms\SmsServiceProvider"
```

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

[](#configuration)

Open config/isms.php

This package is required three configurations.

1. domain = Which is provided by SSL Wirless.
2. api\_token = API authorization token which is provided by SSL Wirless
3. sid = Whis is provided by SSL Wireless

Usages
------

[](#usages)

1. For sending Single SMS
=========================

[](#1-for-sending-single-sms)

```
use Ssl\Isms\SMS;

$sms = new SMS();
$response = $sms->single('01xxxxxxxxx','Your Message body', 'Your unique sms id')->send();

$result = json_decode($response);

if($result->status_code == 200) {
    echo "Success";
} else {
    echo $result->error_message;
}
```

2. For sending Bulk SMS
=======================

[](#2-for-sending-bulk-sms)

```
use Ssl\Isms\SMS;

$sms = new SMS();
$response = $sms->bulk('01xxxxxxxxx,01xxxxxxxxx','Your Message body', 'Your unique sms id')->send();

$result = json_decode($response);

if($result->status_code == 200) {
    echo "Success";
} else {
    echo $result->error_message;
}
```

3. For sending Dynamic SMS
==========================

[](#3-for-sending-dynamic-sms)

```
use Ssl\Isms\SMS;

$sms = new SMS();
$messageData = [
    [
        "msisdn" => "8801XXXXXXXXX",
        "text" => "SMS 1",
        "csms_id" => "Your SMS ID"
    ],
    [
        "msisdn" => "8801XXXXXXXXX",
        "text" => "SMS 2",
        "csms_id" => "Your SMS ID"
    ]
];

$response = $sms->dynamic($messageData)->send();

$result = json_decode($response);

if($result->status_code == 200) {
    echo "Success";
} else {
    echo $result->error_message;
}
```

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

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 ~1118 days

Total

2

Last Release

828d ago

Major Versions

v1.0 → v2.02024-03-18

PHP version history (2 changes)v1.0PHP &gt;=7.1.3

v2.0PHP ^7.1|^7.2|^7.3|^8.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/7963512?v=4)[Software Shop Limited](/maintainers/sslwireless)[@SSLWireless](https://github.com/SSLWireless)

---

Top Contributors

[![latif-ssl](https://avatars.githubusercontent.com/u/57317904?v=4)](https://github.com/latif-ssl "latif-ssl (26 commits)")

### Embed Badge

![Health badge](/badges/sslw-ismsplus/health.svg)

```
[![Health](https://phpackages.com/badges/sslw-ismsplus/health.svg)](https://phpackages.com/packages/sslw-ismsplus)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35816.3M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24015.5M18](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172437.8k11](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

93452.6k6](/packages/botman-driver-telegram)

PHPackages © 2026

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