PHPackages                             revosystems/paloma - 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. revosystems/paloma

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

revosystems/paloma
==================

Package to send Sms via Vonage/Nexmo

2.0.0(1y ago)020.9k[3 PRs](https://github.com/revosystems/paloma/pulls)MITPHPPHP ^8.0

Since Jun 10Pushed 1y ago3 watchersCompare

[ Source](https://github.com/revosystems/paloma)[ Packagist](https://packagist.org/packages/revosystems/paloma)[ Docs](https://github.com/revosystems/paloma)[ RSS](/packages/revosystems-paloma/feed)WikiDiscussions main Synced today

READMEChangelog (8)Dependencies (9)Versions (20)Used By (0)

This is my package paloma
=========================

[](#this-is-my-package-paloma)

[![Latest Version on Packagist](https://camo.githubusercontent.com/cc38fd0f228e31ed3b1ee2e2068b540ded3d8c6cd97ba69c30ecc53a350deb4a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7265766f73797374656d732f70616c6f6d612e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/revosystems/paloma)[![GitHub Tests Action Status](https://camo.githubusercontent.com/4479d1fc948fbb961e739ee3acfe62f20b2ef0e10b0d3b73c5e646cddc36dc80/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f7265766f73797374656d732f70616c6f6d612f72756e2d74657374733f6c6162656c3d7465737473)](https://github.com/revosystems/paloma/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/e52b4d920cd499b6941c734299366444a87f3c79159a6bf8d7591b18a7d8085c/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f7265766f73797374656d732f70616c6f6d612f436865636b253230262532306669782532307374796c696e673f6c6162656c3d636f64652532307374796c65)](https://github.com/revosystems/paloma/actions?query=workflow%3A%22Check+%26+fix+styling%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/7b7230ba1fad639e9ad8f46c4c77d3ebf9134ec4ba4874386825f4126054605a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7265766f73797374656d732f70616c6f6d612e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/revosystems/paloma)

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

[](#installation)

You can install the package via composer:

```
composer require revosystems/paloma
```

You can publish and run the migrations with:

```
php artisan vendor:publish --tag="paloma-migrations"
php artisan migrate
```

You can publish the config file with:

```
php artisan vendor:publish --tag="paloma-config"
```

This is the contents of the published config file:

```
return [
    'sms_from' => env('VONAGE_FROM_NUMBER', 'Vonage APIs'),
    'vonage_key' => env('VONAGE_KEY'),
    'vonage_secret' => env('VONAGE_SECRET'),
];
```

Usage
-----

[](#usage)

You can send sms directly using the facade or send sms using the notification feature from laravel.

To send sms directly:

```
use Revo\Paloma\Facades\Paloma;

Paloma::send(string $phone, string $message, string $service, ?string $from = null)
```

The phone must contain the country code prefix (34 or +34). A wrong phone will send anything. Vonage cannot validate the phone.

To notify using Paloma you should add the channel and method to your notification:

```
use Revo\Paloma\PalomaChannel;
use Revo\Paloma\PalomaMessage;

public function via($notifiable)
{
    return [PalomaChannel::class];
}

public function toPaloma($notifiable): PalomaMessage
{
    return new PalomaMessage(string $message, string $service, ?string $from = null);
}
```

Also the notifieble instance should have the $full\_phone property. On a Laravel model can be a computed property as so:

```
public function getFullPhoneAttribute(): string
{
    return "34" . trim($this->phone);
}
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

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

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

[](#contributing)

Please see [CONTRIBUTING](https://github.com/spatie/.github/blob/main/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [aleixgilaguilar](https://github.com/revosystems)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

36

—

LowBetter than 79% of packages

Maintenance34

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor3

3 contributors hold 50%+ of commits

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

Recently: every ~189 days

Total

9

Last Release

643d ago

Major Versions

0.1.4 → 1.02023-08-18

1.0.2 → 2.0.02024-09-27

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/26813973?v=4)[Revo Systems](/maintainers/revosystems)[@revosystems](https://github.com/revosystems)

---

Top Contributors

[![aleixgil](https://avatars.githubusercontent.com/u/29859922?v=4)](https://github.com/aleixgil "aleixgil (10 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (8 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (8 commits)")[![BadChoice](https://avatars.githubusercontent.com/u/93900?v=4)](https://github.com/BadChoice "BadChoice (6 commits)")[![MartiSalaMorral](https://avatars.githubusercontent.com/u/65666906?v=4)](https://github.com/MartiSalaMorral "MartiSalaMorral (6 commits)")[![PauRevo](https://avatars.githubusercontent.com/u/35812841?v=4)](https://github.com/PauRevo "PauRevo (3 commits)")[![kiriamcf-revo](https://avatars.githubusercontent.com/u/162309993?v=4)](https://github.com/kiriamcf-revo "kiriamcf-revo (2 commits)")[![PauBenetPrat](https://avatars.githubusercontent.com/u/8748692?v=4)](https://github.com/PauBenetPrat "PauBenetPrat (2 commits)")[![draude](https://avatars.githubusercontent.com/u/2104167?v=4)](https://github.com/draude "draude (1 commits)")

---

Tags

laravelrevosystemspaloma

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/revosystems-paloma/health.svg)

```
[![Health](https://phpackages.com/badges/revosystems-paloma/health.svg)](https://phpackages.com/packages/revosystems-paloma)
```

###  Alternatives

[spatie/laravel-permission

Permission handling for Laravel 12 and up

12.9k102.4M1.4k](/packages/spatie-laravel-permission)[spatie/laravel-pdf

Create PDFs in Laravel apps

1.0k4.8M46](/packages/spatie-laravel-pdf)[dedoc/scramble

Automatic generation of API documentation for Laravel applications.

2.1k11.2M96](/packages/dedoc-scramble)[spatie/laravel-passkeys

Use passkeys in your Laravel app

471890.7k36](/packages/spatie-laravel-passkeys)[codewithdennis/filament-select-tree

The multi-level select field enables you to make single selections from a predefined list of options that are organized into multiple levels or depths.

329530.5k29](/packages/codewithdennis-filament-select-tree)[harris21/laravel-fuse

Circuit breaker for Laravel queue jobs. Protect your workers from cascading failures.

44855.7k](/packages/harris21-laravel-fuse)

PHPackages © 2026

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