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

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

umuttaymaz/laravel-verimor-sms
==============================

Verimor SMSAPI for Laravel applications

1.0.2(8y ago)112MITPHPPHP &gt;=5.6.4

Since Feb 28Pushed 8y agoCompare

[ Source](https://github.com/umuttaymaz/laravel-verimor-sms)[ Packagist](https://packagist.org/packages/umuttaymaz/laravel-verimor-sms)[ Docs](https://github.com/umuttaymaz/laravel-verimor-sms)[ RSS](/packages/umuttaymaz-laravel-verimor-sms/feed)WikiDiscussions master Synced yesterday

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

Verimor notifications channel for Laravel 5.3+
==============================================

[](#verimor-notifications-channel-for-laravel-53)

[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/bf1fa2bbdcf933ac22eea0f6a33cf607402e66dc13df7f984cdd732187b21ed4/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f756d75747461796d617a2f6c61726176656c2d766572696d6f722d736d732f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/umuttaymaz/laravel-verimor-sms)[![StyleCI](https://camo.githubusercontent.com/a443f542c7db1226e75f6f9887d8337525feb638c31ba93fd76ca0ef1c6e84b3/68747470733a2f2f7374796c6563692e696f2f7265706f732f3132333334373334332f736869656c64)](https://styleci.io/repos/123153620)[![Total Downloads](https://camo.githubusercontent.com/906ce6adb3c26fc9fbd314c29c325d1dcb2fd05129ff97e3c80473cd0a9dc0cd/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f756d75747461796d617a2f6c61726176656c2d766572696d6f722d736d732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/umuttaymaz/laravel-verimor-sms)

This package makes it easy to send notifications using [VerimorSMS](https://verimor.com.tr) with Laravel 5.3+.

Contents
--------

[](#contents)

- [Installation](#installation)
    - [Setting up the VerimorSMSAPI](#setting-up-the-VerimorSMSAPI-service)
- [Usage](#usage)
- [Changelog](#changelog)
- [Testing](#testing)
- [Security](#security)
- [Contributing](#contributing)
- [Credits](#credits)
- [License](#license)

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

[](#installation)

You can install the package via composer:

```
composer require umuttaymaz/laravel-verimor-sms
```

Then you must install the service provider:

```
// config/app.php
'providers' => [
    ...
    UmutTaymaz\VerimorSMSAPI\VerimorServiceProvider::class
],

'alias' => [
    ...
    'Verimor' => UmutTaymaz\VerimorSMSAPI\Facades\Verimor::class
]
```

### Setting up the VerimorSMSAPI service

[](#setting-up-the-verimorsmsapi-service)

Add your Verimor username, password and default sender name to your `.env`:

```
VERIMOR_USERNAME=username
VERIMOR_PASSWORD=apiPassword
VERIMOR_HEADER=verifiedHeader

```

Usage
-----

[](#usage)

```
return Verimor::send('Example Message', function ($sms){
        $sms->to(['phoneNumber1', 'phoneNumber2']);
});
```

or

```
return Verimor::send('Example Message', function ($sms){
        $sms->to('phoneNumber');
});
```

If you want to send SMS with another header instead of env variable:

```
return Verimor::header('anotherHeader')->send('Example Message', function ($sms){
        $sms->to('phoneNumber');
});
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Testing
-------

[](#testing)

```
$ composer test
```

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [Umut Taymaz](https://github.com/umuttaymaz)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community6

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

Total

2

Last Release

2995d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/288a7efad68880655b07165be30323c2b58b73f624242aae13527f832bc1b046?d=identicon)[umuttaymaz](/maintainers/umuttaymaz)

---

Top Contributors

[![umuttaymaz](https://avatars.githubusercontent.com/u/7460205?v=4)](https://github.com/umuttaymaz "umuttaymaz (10 commits)")

---

Tags

laravelphpsmssms-apiverimor

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[danharrin/livewire-rate-limiting

Apply rate limiters to Laravel Livewire actions.

40423.1M27](/packages/danharrin-livewire-rate-limiting)[mateusjunges/laravel-kafka

A kafka driver for laravel

7163.1M17](/packages/mateusjunges-laravel-kafka)[illuminate/http

The Illuminate Http package.

11936.0M5.1k](/packages/illuminate-http)[ricorocks-digital-agency/soap

A SOAP client that provides a clean interface for handling requests and responses.

4281.8M5](/packages/ricorocks-digital-agency-soap)[api-platform/laravel

API Platform support for Laravel

59126.4k6](/packages/api-platform-laravel)[laravel-shift/curl-converter

A command line tool to convert curl requests to Laravel HTTP requests.

935.3k](/packages/laravel-shift-curl-converter)

PHPackages © 2026

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