PHPackages                             shipu/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. [HTTP &amp; Networking](/categories/http)
4. /
5. shipu/php-sslwireless-sms

ActiveLibrary[HTTP &amp; Networking](/categories/http)

shipu/php-sslwireless-sms
=========================

PHP client for SSL Wireless SMS API

01PHP

Since Dec 4Pushed 1y agoCompare

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

READMEChangelogDependenciesVersions (1)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

14

—

LowBetter than 2% of packages

Maintenance30

Infrequent updates — may be unmaintained

Popularity1

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity16

Early-stage or recently created project

 Bus Factor1

Top contributor holds 77.8% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/91fdb46a4f45685ae0d448fbc943b1e4a662b56864b17224a65d14c92ee4e247?d=identicon)[shipu](/maintainers/shipu)

---

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 (4 commits)")

### Embed Badge

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

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

###  Alternatives

[friendsofsymfony/rest-bundle

This Bundle provides various tools to rapidly develop RESTful API's with Symfony

2.8k73.3M319](/packages/friendsofsymfony-rest-bundle)[php-http/discovery

Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations

1.3k309.5M1.2k](/packages/php-http-discovery)[pusher/pusher-php-server

Library for interacting with the Pusher REST API

1.5k94.8M293](/packages/pusher-pusher-php-server)[react/http

Event-driven, streaming HTTP client and server implementation for ReactPHP

78026.4M414](/packages/react-http)[php-http/curl-client

PSR-18 and HTTPlug Async client with cURL

48347.0M384](/packages/php-http-curl-client)[smi2/phpclickhouse

PHP ClickHouse Client

84310.1M71](/packages/smi2-phpclickhouse)

PHPackages © 2026

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