PHPackages                             moririnson/laravel-line-notify - 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. moririnson/laravel-line-notify

AbandonedArchivedLibrary

moririnson/laravel-line-notify
==============================

line notify for laravel

1.1.0(5y ago)212.5k—4.3%1MITPHPPHP &gt;=7.0

Since Feb 14Pushed 5y ago1 watchersCompare

[ Source](https://github.com/moririnson/laravel-line-notify)[ Packagist](https://packagist.org/packages/moririnson/laravel-line-notify)[ RSS](/packages/moririnson-laravel-line-notify/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (2)Dependencies (6)Versions (3)Used By (0)

Laravel Notifications for LINE Notify [![Build Status](https://github.com/moririnson/laravel-line-notify/workflows/PHP%20Composer/badge.svg)](https://github.com/moririnson/laravel-line-notify/workflows/PHP%20Composer/badge.svg)
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

[](#laravel-notifications-for-line-notify--)

### Requirement

[](#requirement)

- PHP 7.0+
- Laravel 5.5+

### Installation

[](#installation)

```
composer require moririnson/laravel-line-notify
```

### Usage

[](#usage)

#### Notification

[](#notification)

Add token to your notifiable.

```
/**
* @return string token
*/
public function routeNotificationForLINE()
{
    return 'ACCESS_TOKEN_HERE';
}
```

Create your notification by `make:notification` and impl like this.

```
use Illuminate\Notifications\Notification;
use Moririnson\LINENotify\Channels\LINENotifyChannel;
use Moririnson\LINENotify\Messages\LINENotifyMessage;

class LineNotify extends Notification
{
    private $message;

    public function __construct($message)
    {
    	$this->message = $message;
    }

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

    public function toLINE($notifiable)
    {
        return (new LINENotifyMessage())->message($this->message);
    }
}
```

Then you can call `notify()`.

```
$notifiable->notify(new LINENotify('test message'));

```

#### Logging

[](#logging)

Add this config to `logging.php`.

```
        'stack' => [
            'driver' => 'stack',
            'channels' => ['line'],
        ],

        'line' => [
            'driver' => 'custom',
            'token' => env('LOG_LINE_NOTIFY_ACCESS_TOKEN'),
            'via' => \Moririnson\LINENotify\Logging\LINENotifyLogger::class,
            'level' => 'error',
        ],

```

### Testing

[](#testing)

```
composer test
```

### License

[](#license)

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

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity29

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity49

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

Total

2

Last Release

1919d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/16463693?v=4)[moririnson](/maintainers/moririnson)[@moririnson](https://github.com/moririnson)

---

Top Contributors

[![moririnson](https://avatars.githubusercontent.com/u/16463693?v=4)](https://github.com/moririnson "moririnson (6 commits)")

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/moririnson-laravel-line-notify/health.svg)

```
[![Health](https://phpackages.com/badges/moririnson-laravel-line-notify/health.svg)](https://phpackages.com/packages/moririnson-laravel-line-notify)
```

###  Alternatives

[laravel/slack-notification-channel

Slack Notification Channel for laravel.

89169.7M111](/packages/laravel-slack-notification-channel)[spatie/laravel-health

Monitor the health of a Laravel application

86910.0M83](/packages/spatie-laravel-health)[laravel-notification-channels/telegram

Telegram Notifications Channel for Laravel

1.1k3.4M35](/packages/laravel-notification-channels-telegram)[laravel-notification-channels/fcm

FCM (Firebase Cloud Messaging) Notifications Driver for Laravel

5917.0M16](/packages/laravel-notification-channels-fcm)[s-ichikawa/laravel-sendgrid-driver

This library adds a 'sendgrid' mail driver to Laravel.

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)[neuron-core/neuron-ai

The PHP Agentic Framework.

1.8k245.3k21](/packages/neuron-core-neuron-ai)

PHPackages © 2026

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