PHPackages                             patricpoba/mnotify - 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. [API Development](/categories/api)
4. /
5. patricpoba/mnotify

ActiveLibrary[API Development](/categories/api)

patricpoba/mnotify
==================

API for sending sms using mnotify.com as the service provider

v0.1.7(1y ago)97903MITPHPPHP ^7.0|^8.0

Since Oct 25Pushed 1y ago1 watchersCompare

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

READMEChangelog (5)Dependencies (4)Versions (10)Used By (0)

mNotify SMS
===========

[](#mnotify-sms)

This package enables sending of sms from your laravel application using [mNotify.com](https://www.mnotify.com) as a service provider. The Voice feature will be added in future releases

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

[](#installation)

Download and install composer (from `http://www.getcomposer.org/download`) if you do not have it already.

Method 1: Require this package with composer:

```
composer require patricpoba/mnotify
```

Method 2: Add the following to your project `composer.json` file

```
{
    "require": {
       "patricpoba/mnotify": "0.1.*"
    }
}

```

and run this command

```
composer update

```

After updating composer, add the ServiceProvider to the providers array in config/app.php

### Laravel &lt;= 5.4 :

[](#laravel--54-)

If you're using laravel 5.5, you can skip this step.

```
PatricPoba\Mnotify\MnotifyServiceProvider::class,
```

Add the facade of this package to the $aliases array.

```
'Sms'  => PatricPoba\Mnotify\Facades\Sms::class,
```

### Configuration

[](#configuration)

Before you can start sending sms you will need to set your api key and default sender ID in your /.env file You can find your api key here `https://apps.mnotify.net/api/api`These config files can be changed from the laravel application. See examples

```

MNOTIFY_SMS_API_KEY=YourKeyGoesHere
MNOTIFY_SENDER_ID=MyApp

```

Usage
-----

[](#usage)

Below is a basic usage guide for sending sms and checking sms balance of your mnotify account.

### Sending Sms

[](#sending-sms)

Sms messages can be sent using the facade or the class file. In this example, we are going to send sms from our laravel application using mnotify.com's sms api

```

# Basic sending(uses api_key set in .env file)
Sms::send('02XXXXXXXXX', 'Testing test');

# To use a different api key,
Sms::setApiKey('API_KEY_GOES_HERE')->send('0275799028', 'Testing App');

# To customise sender Id,
# NB: sender Id must not be more than 11 characters
Sms::from('CompanyName')->send('02XXXXXXXX', 'Testing App');
```

### Sceduling

[](#sceduling)

A date and time in Y-m-d H:i:s format. This datetime should only be added when you want to schedule the message at a later time

```
$dateTime = \Carbon\Carbon::now()->addMinutes(30); // format: 2017-05-02 00:59:00

Smd::schedule($dateTime, '0275799028', 'Testing Application')
```

### Checking Sms balance

[](#checking-sms-balance)

This returns your mnotify.com sms balance.

```
Sms::balance();

# To check the balance using an api key different from the one set in the .env file,
Sms::setApiKey('API_KEY_GOES_HERE')->balance();
```

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

[](#contributing)

Thank you for considering contributing to the package! To contribute, fork this repository, write some code and then submit a pull request to the develop branch. :-)

License
-------

[](#license)

This package is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT).

###  Health Score

39

—

LowBetter than 86% of packages

Maintenance46

Moderate activity, may be stable

Popularity23

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 72.7% 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 ~386 days

Recently: every ~564 days

Total

8

Last Release

421d ago

PHP version history (3 changes)v0.1.3PHP &gt;=5.6.0

v0.1.4PHP ^7.0

v0.1.5PHP ^7.0|^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/dde1dfc39af29c9af75bdea66c8451641183920f54afe17fd0fc55b055d9fed2?d=identicon)[patricpoba](/maintainers/patricpoba)

---

Top Contributors

[![patricpoba](https://avatars.githubusercontent.com/u/4930107?v=4)](https://github.com/patricpoba "patricpoba (8 commits)")[![qodehub-patrick](https://avatars.githubusercontent.com/u/37240456?v=4)](https://github.com/qodehub-patrick "qodehub-patrick (3 commits)")

---

Tags

package

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/patricpoba-mnotify/health.svg)

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

###  Alternatives

[mollie/laravel-mollie

Mollie API client wrapper for Laravel &amp; Mollie Connect provider for Laravel Socialite

3624.1M28](/packages/mollie-laravel-mollie)[mll-lab/laravel-graphiql

Easily integrate GraphiQL into your Laravel project

683.2M9](/packages/mll-lab-laravel-graphiql)[spatie/laravel-route-discovery

Auto register routes using PHP attributes

23645.0k2](/packages/spatie-laravel-route-discovery)[esign/laravel-conversions-api

A laravel wrapper package around the Facebook Conversions API

69145.4k](/packages/esign-laravel-conversions-api)[didww/didww-api-3-php-sdk

PHP SDK for DIDWW API 3

1218.2k](/packages/didww-didww-api-3-php-sdk)[surface/laravel-webfinger

A Laravel package to create an ActivityPub webfinger.

113.8k](/packages/surface-laravel-webfinger)

PHPackages © 2026

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