PHPackages                             nextgen-tech/laravel-multiinfo - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. nextgen-tech/laravel-multiinfo

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

nextgen-tech/laravel-multiinfo
==============================

v1.2.1(4y ago)043MITPHP

Since Oct 22Pushed 4y ago1 watchersCompare

[ Source](https://github.com/nextgen-tech/laravel-multiinfo)[ Packagist](https://packagist.org/packages/nextgen-tech/laravel-multiinfo)[ RSS](/packages/nextgen-tech-laravel-multiinfo/feed)WikiDiscussions master Synced 3w ago

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

Laravel MultiInfo
=================

[](#laravel-multiinfo)

MultiInfo integration for Laravel.

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

[](#installation)

```
composer require nextgen-tech/laravel-multiinfo
```

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

[](#configuration)

```
MULTIINFO_CONNECTION=                    # Connection type (http is the only one supported)
MULTIINFO_API_VERSION=                   # API version (api1 or api2)
MULTIINFO_CERTIFICATE_PUBLIC_KEY_PATH=   # Path to certificate public key
MULTIINFO_CERTIFICATE_PRIVATE_KEY_PATH=  # Path to certificate private key
MULTIINFO_CERTIFICATE_PASSWORD=          # Certificate password
MULTIINFO_CREDENTIALS_LOGIN=             # Service login
MULTIINFO_CREDENTIALS_PASSWORD=          # Service password
MULTIINFO_CREDENTIALS_SERVICE_ID=        # Service ID

```

Certificate needs to be in PEM format. You can convert P12 to PEM using this two scripts:

```
openssl pkcs12 -in "/path/to/cert.p12" -out public_key.pem -nocerts -nodes
openssl pkcs12 -in "/path/to/cert.p12" -out private_key.pem -clcerts -nokeys
```

Usage
-----

[](#usage)

Via notification channel:

```
// app/Models/User.php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;
use Illuminate\Notifications\Notifiable;
use Illuminate\Notifications\Notification;

class User extends Model
{
    use Notifiable;

    ...

    public function routeNotificationForMultiinfo(?Notification $notification): string
    {
        return $this->phone;
    }

    ...
}

// app/Notifications/ExampleNotification.php

namespace App\Notifications;

use Illuminate\Notifications\Notification;
use NGT\Laravel\MultiInfo\MultiInfoMessage;

class ExampleNotification extends Notification
{
    public function via($notifiable): array
    {
        return ['multiinfo'];
    }

    public function toMultIinfo($notifiable): MultiInfoMessage
    {
        return (new MultiInfoMessage())
            ->content('test message');
    }
}
```

Or directly via handler:

```
use NGT\MultiInfo\Handler;
use NGT\MultiInfo\Requests\SendSmsRequest;

$handler = app(Handler::class);

$request = app(SendSmsRequest::class)
    ->setDestination('123123123')
    ->setContent('test message');

/** @var \NGT\MultiInfo\Responses\SendSmsResponse */
$response = $handler->handle($request);
```

###  Health Score

25

—

LowBetter than 35% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity54

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

4

Last Release

1662d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/95dd08b3f7f83eedb53d6a13b37a9c2121336d1ae1615e79d5b274e59d32ead8?d=identicon)[Dartui](/maintainers/Dartui)

---

Top Contributors

[![Dartui](https://avatars.githubusercontent.com/u/2657856?v=4)](https://github.com/Dartui "Dartui (11 commits)")

###  Code Quality

Static AnalysisPHPStan

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/nextgen-tech-laravel-multiinfo/health.svg)

```
[![Health](https://phpackages.com/badges/nextgen-tech-laravel-multiinfo/health.svg)](https://phpackages.com/packages/nextgen-tech-laravel-multiinfo)
```

###  Alternatives

[markwalet/nova-modal-response

A Laravel Nova asset for Modal responses on an action.

17878.9k](/packages/markwalet-nova-modal-response)[team-nifty-gmbh/tall-datatables

Server-side rendered datatables for Laravel and Livewire

1320.9k4](/packages/team-nifty-gmbh-tall-datatables)[tomshaw/electricgrid

A feature-rich Livewire package designed for projects that require dynamic, interactive data tables.

119.4k](/packages/tomshaw-electricgrid)

PHPackages © 2026

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