PHPackages                             misaf/laravel-sms-gateway-vonage - 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. misaf/laravel-sms-gateway-vonage

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

misaf/laravel-sms-gateway-vonage
================================

Vonage SMS gateway driver for Laravel.

v3.0.0(1mo ago)11↓83.3%MITPHPPHP ^8.3CI passing

Since Jul 3Pushed 1mo agoCompare

[ Source](https://github.com/misaf/laravel-sms-gateway-vonage)[ Packagist](https://packagist.org/packages/misaf/laravel-sms-gateway-vonage)[ Docs](https://github.com/misaf/laravel-sms-gateway-vonage)[ RSS](/packages/misaf-laravel-sms-gateway-vonage/feed)WikiDiscussions master Synced 1w ago

READMEChangelog (2)Dependencies (9)Versions (5)Used By (0)

Laravel SMS Gateway Vonage Driver
=================================

[](#laravel-sms-gateway-vonage-driver)

Vonage SMS gateway driver for [`misaf/laravel-sms-gateway`](https://github.com/misaf/laravel-sms-gateway).

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

[](#installation)

```
composer require misaf/laravel-sms-gateway-vonage
```

Laravel package discovery registers the driver service provider automatically.

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

[](#configuration)

```
SMS_GATEWAY_DRIVER=vonage
SMS_GATEWAY_VONAGE_APIKEY=your-api-key
SMS_GATEWAY_VONAGE_API_SECRET=your-api-secret
```

```
// config/services.php
'vonage' => [
    'api_key'    => env('SMS_GATEWAY_VONAGE_APIKEY'),
    'api_secret' => env('SMS_GATEWAY_VONAGE_API_SECRET'),
    'base_url' => env('SMS_GATEWAY_VONAGE_BASE_URL', 'https://rest.nexmo.com/'),
],
```

Driver Behavior
---------------

[](#driver-behavior)

OptionValueDriver name`vonage`Default base URL`https://rest.nexmo.com/``send()` endpoint`POST sms/json`Authentication`api_key` and `api_secret` query parameters from `services.vonage.api_key` and `services.vonage.api_secret`PayloadForm data sent directly to VonageUsage
-----

[](#usage)

```
use Misaf\LaravelSmsGateway\Facade\SmsGateway;

$response = SmsGateway::driver('vonage')->send([
    'from' => 'Laravel',
    'to'   => '14155550100',
    'text' => 'Hello from Vonage',
]);
```

The payload is passed directly to Vonage, so use the fields expected by the Vonage API.

Use `request()` when you need direct access to Laravel's HTTP client:

```
$request = SmsGateway::driver('vonage')->request();
```

Testing
-------

[](#testing)

```
composer test
composer analyse
```

License
-------

[](#license)

MIT

###  Health Score

41

—

FairBetter than 87% of packages

Maintenance91

Actively maintained with recent releases

Popularity3

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

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

46d ago

Major Versions

v1.0.0 → v3.0.02026-07-04

### Community

Maintainers

![](https://www.gravatar.com/avatar/41fd7351d25e29dafa18068d0418eecf6bb47a7473aabe6bc674b4ca35e71805?d=identicon)[misaf](/maintainers/misaf)

---

Top Contributors

[![misaf](https://avatars.githubusercontent.com/u/8195685?v=4)](https://github.com/misaf "misaf (12 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (2 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (1 commits)")

---

Tags

laravellaravel-packagesmssms apivonagesms-gatewaysms providersms drivervonage-sms

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/misaf-laravel-sms-gateway-vonage/health.svg)

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

###  Alternatives

[gr8shivam/laravel-sms-api

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

10241.4k](/packages/gr8shivam-laravel-sms-api)[djunehor/laravel-sms

Send SMS from your laravel application

395.9k1](/packages/djunehor-laravel-sms)

PHPackages © 2026

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