PHPackages                             nahid/php-sslwireless-sms - 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. nahid/php-sslwireless-sms

ActiveLibrary[API Development](/categories/api)

nahid/php-sslwireless-sms
=========================

PHP client for SSL Wireless SMS API

v2.0.0(6y ago)1130417[1 issues](https://github.com/nahid/php-sslwireless-sms/issues)[1 PRs](https://github.com/nahid/php-sslwireless-sms/pulls)MITPHPPHP &gt;=5.5.9

Since Jan 19Pushed 3y ago2 watchersCompare

[ Source](https://github.com/nahid/php-sslwireless-sms)[ Packagist](https://packagist.org/packages/nahid/php-sslwireless-sms)[ RSS](/packages/nahid-php-sslwireless-sms/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (3)Dependencies (1)Versions (4)Used By (0)

PHP SSL-Wirless SMS client
==========================

[](#php-ssl-wirless-sms-client)

php-sslwireless-sms is a PHP client for SSL Wirless SMS API. Its just a magic to sending SMS trough this client. This package is also support Laravel.

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

[](#installation)

Goto terminal and run this command

```
composer require nahid/php-sslwireless-sms
```

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

### For Laravel

[](#for-laravel)

Open `config/app` and add this line in `providers` section

```
Nahid\SslWSms\SslWSmsServiceProvider::class,
```

For Facade support you have add this line in `aliases` section.

```
'Sms'   =>  Nahid\SslWSms\Facades\Sms::class,
```

Then run this command

```
php artisan vendor:publish --provider="Nahid\SslWSms\SslWSmsServiceProvider"
```

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

[](#configuration)

This package is required three configurations.

1. sid = Which is given by SSL-Wirless.
2. user = your user id which is given by SSL-Wirless
3. password = your account password

php-sslwireless-sms is take an array as config file. Lets services

```
use Nahid\SslWSms\Sms;

$config = [
    'sid' => '',
    'user' => '',
    'password'=> ''
];

$sms = new Sms($config);
```

### For Laravel

[](#for-laravel-1)

This package is also support Laravel. For laravel you have to configure it as laravel style.

Goto `app\sslwsms.php` and configure it with your credentials.

```
return [
    'sid' => '',
    'user' => '',
    'password'=> ''
];
```

Usages
------

[](#usages)

Its very easy to use. This packages has a lot of functionalities and features.

### Send SMS to a single user

[](#send-sms-to-a-single-user)

```
$sms = new Sms($config);
$msg = $sms->message('0170420420', 'Hello Dear')->send();

if ($msg->parameter == 'ok' and $msg->login == 'successfull') {
    echo 'Messages Sent';
}
```

#### Laravel

[](#laravel)

```
use Nahid\SslWSms\Facades\Sms;

$msg = Sms::message('0170420420', 'Hello Dear')->send();

if ($msg->parameter == 'ok' and $msg->login == 'successfull') {
    echo 'Messages Sent';
}
```

### Send SMS to more user

[](#send-sms-to-more-user)

```
$msg = $sms->message('0170420420', 'Hello Dear')
        ->message('0160420420', 'Hello Dear Uncle')
        ->message('0150420420', 'Hello Dear Trump')
        ->send();

if ($msg->parameter == 'ok' and $msg->login == 'successfull') {
    echo 'Messages Sent';
}
```

### Send SMS to users from Collections

[](#send-sms-to-users-from-collections)

```
$users = [
    ['01670420420', 'Hello Trump'],
    ['01970420420', 'Hello Bush'],
    ['01770420420', 'Hello Hilari'],
    ['01570420420', 'Hello Obama'],
    ['01870420420', 'Hello Hero Alom']
]

$msg = $sms->message($users)->send();

if ($msg->parameter == 'ok' and $msg->login == 'successfull') {
    echo 'Messages Sent';
}
```

### Send same message to all users

[](#send-same-message-to-all-users)

```
$users = [
    ['01670420420'],
    ['01970420420'],
    ['01770420420'],
    ['01570420420'],
    ['01870420420']
]

$msg = $sms->message($users, 'Hello Everyone')->send();

if ($msg->parameter == 'ok' and $msg->login == 'successfull') {
    echo 'Messages Sent';
}
```

### Send SMS with SMS template

[](#send-sms-with-sms-template)

Suppose you have to send SMS to multiple users but you want to mentions their name dynamically with message. So what can you do? Ha ha this package already handle this situations. Lets see

```
$users = [
    ['01670420420', ['Nahid', '1234']],
    ['01970420420', ['Obi', '3213']],
    ['01770420420', ['Shipu', '5000']],
    ['01570420420', ['Kaiser', '3214']],
    ['01870420420', ['Eather', '7642']]
]

$msg = $sms->message($users, "Hello %s , Your promo code is: %s")->send();

if ($msg->parameter == 'ok' and $msg->login == 'successfull') {
    echo 'Messages Sent';
}
```

Here this messege will sent as every users with his name and promo code like:

- `01670420420` - Hello Nahid , Your promo code is: 1234
- `01970420420` - Hello Obi , Your promo code is: 3213
- `01770420420` - Hello Shipu , Your promo code is: 5000
- `01570420420` - Hello Kaiser , Your promo code is: 1234
- `01870420420` - Hello Eather , Your promo code is: 7642

Thats it.

Thank you :)

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance18

Infrequent updates — may be unmaintained

Popularity23

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 82.4% 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 ~566 days

Total

3

Last Release

2268d ago

Major Versions

v1.0.1 → v2.0.02020-02-26

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/3167309?v=4)[Nahid Bin Azhar](/maintainers/nahid)[@nahid](https://github.com/nahid)

---

Top Contributors

[![nahid](https://avatars.githubusercontent.com/u/3167309?v=4)](https://github.com/nahid "nahid (14 commits)")[![Shipu](https://avatars.githubusercontent.com/u/4118421?v=4)](https://github.com/Shipu "Shipu (3 commits)")

---

Tags

phpapismsSSL Wirelessphp-ssl-sms

### Embed Badge

![Health badge](/badges/nahid-php-sslwireless-sms/health.svg)

```
[![Health](https://phpackages.com/badges/nahid-php-sslwireless-sms/health.svg)](https://phpackages.com/packages/nahid-php-sslwireless-sms)
```

###  Alternatives

[openai-php/laravel

OpenAI PHP for Laravel is a supercharged PHP API client that allows you to interact with the Open AI API

3.7k7.6M74](/packages/openai-php-laravel)[theodo-group/llphant

LLPhant is a library to help you build Generative AI applications.

1.5k311.5k5](/packages/theodo-group-llphant)[resend/resend-php

Resend PHP library.

564.7M21](/packages/resend-resend-php)[unicodeveloper/jusibe-php-lib

Jusibe PHP Library

3417.4k1](/packages/unicodeveloper-jusibe-php-lib)[scriptdevelop/whatsapp-manager

Paquete para manejo de WhatsApp Business API en Laravel

762.6k](/packages/scriptdevelop-whatsapp-manager)

PHPackages © 2026

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