PHPackages                             jcsofts/laravel-messente - 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. jcsofts/laravel-messente

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

jcsofts/laravel-messente
========================

the laravel package for messagete

1.0.1(8y ago)135MITPHPPHP &gt;=7.0.0

Since Nov 15Pushed 8y agoCompare

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

READMEChangelogDependencies (2)Versions (3)Used By (0)

 Messente Package for Laravel
------------------------------

[](#----messente-package-for-laravel)

 [![Latest Stable Version](https://camo.githubusercontent.com/f6b104a6cb7401128ca0e53163c2b7d7c48fbd21ec54c0b4fe1baecafb89e4d6/68747470733a2f2f706f7365722e707567782e6f72672f6a63736f6674732f6c61726176656c2d6d657373656e74652f762f737461626c653f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/jcsofts/laravel-messente) [![Latest Unstable Version](https://camo.githubusercontent.com/80f147eb51304f9451a6e153cf1c131e2f2806b86527b60659a5f253933c44e3/68747470733a2f2f706f7365722e707567782e6f72672f6a63736f6674732f6c61726176656c2d6d657373656e74652f762f756e737461626c653f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/jcsofts/laravel-messente) [![License](https://camo.githubusercontent.com/642c9804b07057165114fc8b358e110bb4c46a3e1023ce20396aa5f5f134fced/68747470733a2f2f706f7365722e707567782e6f72672f6a63736f6674732f6c61726176656c2d6d657373656e74652f6c6963656e73653f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/jcsofts/laravel-messente) [![Total Downloads](https://camo.githubusercontent.com/46658ab015f2c54643e210cca310b80da6946e9d6c3342f19b8fbf5892076448/68747470733a2f2f706f7365722e707567782e6f72672f6a63736f6674732f6c61726176656c2d6d657373656e74652f646f776e6c6f616473)](https://packagist.org/packages/jcsofts/laravel-messente)

Introduction
------------

[](#introduction)

This is a simple Laravel Service Provider providing access to the [Messente API](https://messente.com/documentation/sms-messaging)

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

[](#installation)

To install the PHP client library using Composer:

```
composer require jcsofts/laravel-messente
```

Alternatively, add these two lines to your composer require section:

```
{
    "require": {
        "jcsofts/laravel-messente": "^1.0"
    }
}
```

### Laravel 5.5+

[](#laravel-55)

If you're using Laravel 5.5 or above, the package will automatically register the `Messente` provider and facade.

### Laravel 5.4 and below

[](#laravel-54-and-below)

Add `Jcsofts\LaravelMessente\MessenteServiceProvider` to the `providers` array in your `config/app.php`:

```
'providers' => [
    // Other service providers...

    Jcsofts\LaravelMessente\MessenteServiceProvider::class,
],
```

If you want to use the facade interface, you can `use` the facade class when needed:

```
use Jcsofts\LaravelMessente\Facade\Messente;
```

Or add an alias in your `config/app.php`:

```
'aliases' => [
    ...
    'Messente' => Jcsofts\LaravelMessente\Facade\Messente::class,
],
```

### Using Laravel-Messente with Lumen

[](#using-laravel-messente-with-lumen)

laravel-messente works with Lumen too! You'll need to do a little work by hand to get it up and running. First, install the package using composer:

```
composer require jcsofts/laravel-messente
```

Next, we have to tell Lumen that our library exists. Update `bootstrap/app.php`and register the `MessenteServiceProvider`:

```
$app->register(Jcsofts\LaravelMessente\MessenteServiceProvider::class);
```

Finally, we need to configure the library. Unfortunately Lumen doesn't support auto-publishing files so you'll have to create the config file yourself by creating a config directory and copying the config file out of the package in to your project:

```
mkdir config
cp vendor/jcsofts/laravel-messagete/config/messente.php config/messente.php
```

At this point, set `MESSENTE_API_USERNAME` and `MESSENTE_API_PASSWORD` in your `.env` file and it should be working for you. You can test this with the following route:

```
try{
        $mid=Messente::send('Hello word', '+8618903859445');
        echo $mid;
    }catch(Exception $e){
        echo $e->getMessage();
    }
```

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

[](#configuration)

You can use `artisan vendor:publish` to copy the distribution configuration file to your app's config directory:

```
php artisan vendor:publish
```

Then update `config/messente.php` with your credentials. Alternatively, you can update your `.env` file with the following:

```
MESSENTE_API_USERNAME=API Username
MESSENTE_API_PASSWORD=API Password
MESSENTE_SENDER=
```

Usage
-----

[](#usage)

To use the Messente Client Library you can use the facade, or request the instance from the service container:

```
try{
        $messageId=Messente::send('Hello word', '+8618903859445');
        echo $messageId;
    }catch(Exception $e){
        echo $e->getMessage();
    }
```

Or

```
$messente = app('Messente');

$messageId=$messente->send('Hello word', '+8618903859445');
```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

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

Total

2

Last Release

3086d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/0c53f63759108a5ab0b5001ffb409029cc0efa2c57aff72eedd06f45c730a2fb?d=identicon)[jcsofts](/maintainers/jcsofts)

---

Top Contributors

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

---

Tags

laravelmessente

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/jcsofts-laravel-messente/health.svg)

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

###  Alternatives

[omniphx/forrest

A Laravel library for Salesforce

2724.4M8](/packages/omniphx-forrest)[sunchayn/nimbus

A Laravel package providing an in-browser API client with automatic schema generation, live validation, and built-in authentication with a touch of Laravel-tailored magic for effortless API testing.

29428.0k](/packages/sunchayn-nimbus)[muhammadhuzaifa/telescope-guzzle-watcher

Telescope Guzzle Watcher provide a custom watcher for intercepting http requests made via guzzlehttp/guzzle php library. The package uses the on\_stats request option for extracting the request/response data. The watcher intercept and log the request into the Laravel Telescope HTTP Client Watcher.

98239.8k1](/packages/muhammadhuzaifa-telescope-guzzle-watcher)[georgeboot/laravel-echo-api-gateway

Use Laravel Echo with API Gateway Websockets

10435.5k](/packages/georgeboot-laravel-echo-api-gateway)[cybercog/youtrack-rest-php

YouTrack REST API PHP Client.

37149.2k3](/packages/cybercog-youtrack-rest-php)[dreamfactory/df-core

DreamFactory(tm) Core Components

1651.7k20](/packages/dreamfactory-df-core)

PHPackages © 2026

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