PHPackages                             karim007/laravel-sslwirless-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. [Mail &amp; Notifications](/categories/mail)
4. /
5. karim007/laravel-sslwirless-sms

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

karim007/laravel-sslwirless-sms
===============================

SSLWirless sms package for laravel

v1.2(1y ago)122MITPHPPHP ^7.4|^8.0|^8.1|^8.2

Since Jun 12Pushed 1y ago1 watchersCompare

[ Source](https://github.com/karim-007/laravel-sslwirless-sms)[ Packagist](https://packagist.org/packages/karim007/laravel-sslwirless-sms)[ RSS](/packages/karim007-laravel-sslwirless-sms/feed)WikiDiscussions main Synced 1mo ago

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

SSLWirless SMS API for PHP/Laravel Framework
============================================

[](#sslwirless-sms-api-for-phplaravel-framework)

[![Downloads](https://camo.githubusercontent.com/6514aa207311e75190b3d82aebea5667f83a23b2c7d3930bc833528c181d51e5/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6b6172696d3030372f6c61726176656c2d73736c7769726c6573732d736d73)](https://packagist.org/packages/karim007/laravel-sslwirless-sms)[![Starts](https://camo.githubusercontent.com/0c6be54e4dda97321860b0826bc8468832312597c3cc8e18f4fffca663ac74c1/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f73746172732f6b6172696d3030372f6c61726176656c2d73736c7769726c6573732d736d73)](https://packagist.org/packages/karim007/laravel-sslwirless-sms)

Features
--------

[](#features)

Requirements
------------

[](#requirements)

- PHP &gt;=7.4
- Laravel &gt;= 6
- illuminate/support &gt;= 6

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

[](#installation)

```
composer require karim007/laravel-sslwirless-sms
```

### vendor publish (config)

[](#vendor-publish-config)

```
php artisan vendor:publish --provider="Karim007\LaravelSslwirlessSms\SSLWirlessSmsServiceProvider" --tag="config"
```

After publish config file setup your credential. you can see this in your config directory sslwirless.php file

```
"api_token"=> env("SSLWIRLESS_API_TOKEN", ''),
"sid"=> env("SSLWIRLESS_SID", ''),
"domain"=> env("SSLWIRLESS_DOMAIN", 'https://smsplus.sslwireless.com'),
"message_type"=> env("BOOMCAST_MESSAGE_TYPE", 'EN'),

```

### Set .env configuration

[](#set-env-configuration)

```
SSLWIRLESS_API_TOKEN=''
SSLWIRLESS_SID=""

```

Usage
-----

[](#usage)

### 1. publish controller

[](#1-publish-controller)

```
php artisan vendor:publish --provider="Karim007\LaravelSslwirlessSms\SSLWirlessSmsServiceProvider" --tag="controllers"

```

### 2. Sent Sms SSLWirlessSmsController

[](#2-sent-sms-sslwirlesssmscontroller)

```
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Karim007\LaravelSslwirlessSms\Facade\SslWirlessSms;

class SSLWirlessSmsController extends Controller
{
    public function singleSms()
    {
        $phone_number = "0151482467"; // msisdn must be array
        $messageBody = "Test Message";
        $customer_smsId = uniqid(); // $customer_smsId id must be unique
        SslWirlessSms::singleSms($phone_number,$messageBody,$customer_smsId);
    }
    public function bulkSms()
    {
        $phone_number = ["015XXXXXXXX", "017xxxxxxxx"]; // phone_number must be array
        $messageBody = "Test Message";
        $batchCustomerSmsId = uniqid(); // $batchCustomerSmsId id must be unique
        SslWirlessSms::bulkSms($phone_number,$messageBody,$batchCustomerSmsId);
    }
    public function dynamicSms()
    {
        //prepare message data
        // sms_id must be unique
        $messageData = [
            [
                "phone_number" => "015XXXXXXXX",
                "message" => "Test Message 1",
                "sms_id" => uniqid() //must be unique
            ],
            [
                "msisdn" => "017xxxxxxxx",
                "text" => "Test Message 2",
                "sms_id" => uniqid() //must be unique
            ]
        ];
        SslWirlessSms::dynamicSms($messageData);
    }
}

```

Contributions to the sslwirless sms package you are welcome. Please note the following guidelines before submitting your pull request.

- Follow [PSR-4](http://www.php-fig.org/psr/psr-4/) coding standards.
- Read SslWirlessSms API documentations first. Please contact with SslWirlessSms for their api documentation and sandbox access.

License
-------

[](#license)

This repository is licensed under the [MIT License](http://opensource.org/licenses/MIT).

Copyright 2023 [md abdul karim](https://github.com/karim-007).

###  Health Score

29

—

LowBetter than 59% of packages

Maintenance31

Infrequent updates — may be unmaintained

Popularity8

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

Total

3

Last Release

716d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/1628a1636c45e8e246f880d1f2401497d66af3f657dba80a0f189b102e4b4ce7?d=identicon)[karim.cse007](/maintainers/karim.cse007)

---

Top Contributors

[![karim-007](https://avatars.githubusercontent.com/u/54572884?v=4)](https://github.com/karim-007 "karim-007 (4 commits)")

---

Tags

sslwirless smssslwirless sms laravelsslwirless sms for laravelsslwirless bulk sms

### Embed Badge

![Health badge](/badges/karim007-laravel-sslwirless-sms/health.svg)

```
[![Health](https://phpackages.com/badges/karim007-laravel-sslwirless-sms/health.svg)](https://phpackages.com/packages/karim007-laravel-sslwirless-sms)
```

###  Alternatives

[minishlink/web-push

Web Push library for PHP

1.9k12.0M53](/packages/minishlink-web-push)[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

2587.7M12](/packages/laravel-notification-channels-twilio)[spatie/url-signer

Generate a url with an expiration date and signature to prevent unauthorized access

4422.3M16](/packages/spatie-url-signer)[mattketmo/email-checker

Throwaway email detection library

2742.0M5](/packages/mattketmo-email-checker)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)[eduardokum/laravel-mail-auto-embed

Library for embed images in emails automatically

1702.0M5](/packages/eduardokum-laravel-mail-auto-embed)

PHPackages © 2026

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