PHPackages                             emrebbozkurt/laravel-verimor-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. emrebbozkurt/laravel-verimor-sms

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

emrebbozkurt/laravel-verimor-sms
================================

Verimor SMS for Laravel Framework

1.0.2(3y ago)834[1 issues](https://github.com/emrebbozkurt/laravel-verimor-sms/issues)MITPHPPHP &gt;=7.4|^8.0

Since Jun 1Pushed 3y ago2 watchersCompare

[ Source](https://github.com/emrebbozkurt/laravel-verimor-sms)[ Packagist](https://packagist.org/packages/emrebbozkurt/laravel-verimor-sms)[ RSS](/packages/emrebbozkurt-laravel-verimor-sms/feed)WikiDiscussions master Synced 3d ago

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

Laravel Verimor SMS
===================

[](#laravel-verimor-sms)

[![Latest Stable Version](https://camo.githubusercontent.com/7bd1bf536c2e484fda91047d4312da1fb62d83c4d04cd1c936578032663d708c/687474703a2f2f706f7365722e707567782e6f72672f656d726562626f7a6b7572742f6c61726176656c2d766572696d6f722d736d732f76)](https://packagist.org/packages/emrebbozkurt/laravel-verimor-sms)[![Total Downloads](https://camo.githubusercontent.com/2e13b5a742c3353950cde3e1091ee69dbe887f913212a4ccf334a13cad3ec4e3/687474703a2f2f706f7365722e707567782e6f72672f656d726562626f7a6b7572742f6c61726176656c2d766572696d6f722d736d732f646f776e6c6f616473)](https://packagist.org/packages/emrebbozkurt/laravel-verimor-sms)[![Latest Unstable Version](https://camo.githubusercontent.com/492372e2c077453144aa6f4b40a62a733690437bf6192f943dbaa8f0fa1f0060/687474703a2f2f706f7365722e707567782e6f72672f656d726562626f7a6b7572742f6c61726176656c2d766572696d6f722d736d732f762f756e737461626c65)](https://packagist.org/packages/emrebbozkurt/laravel-verimor-sms)[![License](https://camo.githubusercontent.com/fe84b869bab08fd527bd73ac6a528767ace95648a4277ed698c8a8c37418dfe1/687474703a2f2f706f7365722e707567782e6f72672f656d726562626f7a6b7572742f6c61726176656c2d766572696d6f722d736d732f6c6963656e7365)](https://packagist.org/packages/emrebbozkurt/laravel-verimor-sms)

Easy sending sms on [Verimor SMS API](https://github.com/verimor/SMS-API/).

> **NOTE:** These instructions are for the latest version of Laravel.

- [Installation](#installation)
- [Configuration](#configuration)
- [Usage](#usage)
- [Support](#support)
- [Copyright and License](#copyright-and-license)

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

[](#installation)

1. Install the package via Composer:

    ```
    composer require emrebbozkurt/laravel-verimor-sms
    ```
2. Publish the configuration file if you want to change any defaults:

    ```
    php artisan vendor:publish --provider="Emrebbozkurt\VerimorSms\VerimorServiceProvider"
    ```

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

[](#configuration)

Add this fields to .env file:

```
VERIMOR_USERNAME=908501234567
VERIMOR_API_KEY=xxxxxxx

```

You can set from verimor config file the default values for extra parameters:

```
return [
    'username' => env('VERIMOR_USERNAME', '908501234567'),
    'password' => env('VERIMOR_API_KEY', 'xxxxxxx'),
    'custom_id' => uniqid()
    'datacoding' => '0',
    'valid_for' => '48:00',
];
```

Usage
-----

[](#usage)

Simple Send:

```
$sms = Verimor::send('+905431231234', 'Hello');
$response = $sms->response();
$status = $sms->status();
```

Send with extra parameters:

```
$sms = Verimor::send('+905431231234', 'Hello', ['custom_id' => uniqid(), 'datacoding' => '0', 'valid_for' => '48:00']);
$response = $sms->response();
$status = $sms->status();
```

Support
-------

[](#support)

Please use [GitHub](https://github.com/emrebbozkurt/laravel-verimor-sms) for reporting bugs, and making comments or suggestions.

Copyright and License
---------------------

[](#copyright-and-license)

[laravel-verimor-sms](https://github.com/emrebbozkurt/laravel-verimor-sms)was written by [Emre Bozkurt](https://emrebbozkurt.github.io) and is released under the [MIT License](LICENSE.md).

Copyright (c) 2022 Emre Bozkurt

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance18

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity56

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

Total

3

Last Release

1132d ago

PHP version history (2 changes)1.0.0PHP ^7.0|^8.0

1.0.2PHP &gt;=7.4|^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/039537c97e58c2e3bb0332c34155dc79ae3a2d3dbad1f3f88f2685466263e13c?d=identicon)[bozkurtemre](/maintainers/bozkurtemre)

---

Top Contributors

[![bozkurtemre](https://avatars.githubusercontent.com/u/35993608?v=4)](https://github.com/bozkurtemre "bozkurtemre (14 commits)")

---

Tags

laravelphpverimorlaravelnotificationsmsverimor

### Embed Badge

![Health badge](/badges/emrebbozkurt-laravel-verimor-sms/health.svg)

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

###  Alternatives

[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

2587.7M12](/packages/laravel-notification-channels-twilio)[gr8shivam/laravel-sms-api

A modern, flexible Laravel package for integrating any SMS gateway with REST API support

10138.4k](/packages/gr8shivam-laravel-sms-api)[ghanem/laravel-smsmisr

Send SMS and SMS Notification via SMS Misr for Laravel

194.8k](/packages/ghanem-laravel-smsmisr)

PHPackages © 2026

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