PHPackages                             bakr/laravel-smsmisr - 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. bakr/laravel-smsmisr

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

bakr/laravel-smsmisr
====================

Laravel package for sending SMS using SMSMisr API

v1.0.0(9mo ago)01MITPHPPHP ^8.0

Since Aug 5Pushed 7mo ago1 watchersCompare

[ Source](https://github.com/mohamedbakr57/laravel-smsmisr)[ Packagist](https://packagist.org/packages/bakr/laravel-smsmisr)[ RSS](/packages/bakr-laravel-smsmisr/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

Laravel SMSMisr 📲
=================

[](#laravel-smsmisr-)

[![Latest Version on Packagist](https://camo.githubusercontent.com/661008847ac4b437693ad82c08a0cc5f9609922d53adaba76210fe7a852451bf/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f62616b722f6c61726176656c2d736d736d6973722e737667)](https://packagist.org/packages/bakr/laravel-smsmisr)

[![Total Downloads](https://camo.githubusercontent.com/8a485c35077aa13aa02fbf710d406640b536d90b17f6287b51669e90f2242c6d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f62616b722f736d736d6973722e737667)](https://packagist.org/packages/bakr/smsmisr)

A modern Laravel package for sending SMS messages using the **SMSMisr** gateway.
Built with simplicity, flexibility, and modern Laravel practices in mind.

---

📚 Table of Contents
-------------------

[](#-table-of-contents)

- [Features](#-features)
- [Installation](#-installation)
- [Configuration](#-configuration)
- [Usage](#-usage)
    - [Send a Single SMS](#send-a-single-sms)
    - [Send to Multiple Recipients](#send-to-multiple-recipients)
    - [Schedule an SMS](#schedule-an-sms)
- [Requirements](#-requirements)
- [Examples](#-examples)

- [Contributing](#-contributing)
- [License](#-license)
- [Credits](#-credits)

---

✨ Features
----------

[](#-features)

- 📬 Send single or bulk SMS messages
- ⏱️ Support for scheduling future messages
- 🧾 Laravel Facade support
- 🛡️ Clean and tested codebase
- ✅ Supports Laravel 10+ out of the box
- 🔄 Simple configuration and usage

---

📦 Installation
--------------

[](#-installation)

```
composer require bakr/smsmisr
```

Laravel 10+ will auto-discover the service provider and facade.

⚙️ Configuration
----------------

[](#️-configuration)

You can publish the config file:

```
php artisan vendor:publish --tag=smsmisr-config
```

This will create a config file at config/smsmisr.php:

```
return [
    'username'  => env('SMSMISR_USERNAME'),
    'password'  => env('SMSMISR_PASSWORD'),
    'sender_id' => env('SMSMISR_SENDER_ID'),
];
```

Then set your .env:

```
SMSMISR_USERNAME=your_username
SMSMISR_PASSWORD=your_password
SMSMISR_SENDER_ID=your_sender_id
```

🧪 Usage
-------

[](#-usage)

Send a Single SMS

```
use Bakr\Smsmisr\Facades\Smsmisr;

Smsmisr::send('201234567890', 'Your verification code is 123456');
```

Send to Multiple Recipients

```
Smsmisr::send(['201234567890', '201112223334'], 'Promo: 50% off today!');
```

Schedule an SMS

```
Smsmisr::schedule('201234567890', 'Happy New Year 🎉', now()->addMinutes(10));
```

✅ Requirements
--------------

[](#-requirements)

PHP ^8.1

Laravel ^10.0 or newer

No external dependencies (uses Laravel's native HTTP client)

💡 Examples
----------

[](#-examples)

Controller Example:

```
public function notifyUser(Request $request)
{
    Smsmisr::send($request->phone, 'Welcome to our platform!');
    return response()->json(['status' => 'sent']);
}
```

```
Smsmisr::schedule('201234567890', 'Don’t miss our event tomorrow!', now()->addDay());
```

🤝 Contributing
--------------

[](#-contributing)

PRs are welcome! Please open issues first for any breaking or feature discussions.

To contribute locally:

```
git clone https://github.com/bakr/smsmisr.git
cd smsmisr
composer install
composer test
```

Make sure your code is clean and tested before submitting a PR.

📄 License
---------

[](#-license)

This package is open-sourced software licensed under the MIT license.

🙌 Credits
---------

[](#-credits)

Developed with ❤️ by Mohamed Bakr

Inspired by the need for clean SMS integrations in Laravel projects

Built for the community — feel free to star ⭐️ and share

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance61

Regular maintenance activity

Popularity1

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

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

Unknown

Total

1

Last Release

280d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/9b5c1a4effdff5d824e0ba2e6b5679f129f054add69b91760f8e3a9e2ccbb616?d=identicon)[mohamedbakr57](/maintainers/mohamedbakr57)

---

Top Contributors

[![mohamedbakr57](https://avatars.githubusercontent.com/u/61648550?v=4)](https://github.com/mohamedbakr57 "mohamedbakr57 (8 commits)")

### Embed Badge

![Health badge](/badges/bakr-laravel-smsmisr/health.svg)

```
[![Health](https://phpackages.com/badges/bakr-laravel-smsmisr/health.svg)](https://phpackages.com/packages/bakr-laravel-smsmisr)
```

###  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)[nyholm/psr7

A fast PHP7 implementation of PSR-7

1.3k235.4M2.4k](/packages/nyholm-psr7)[pusher/pusher-php-server

Library for interacting with the Pusher REST API

1.5k94.8M293](/packages/pusher-pusher-php-server)[spatie/crawler

Crawl all internal links found on a website

2.8k16.3M52](/packages/spatie-crawler)[react/http

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

78126.4M414](/packages/react-http)

PHPackages © 2026

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