PHPackages                             godforhire/prowlnotifications - 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. [Mail &amp; Notifications](/categories/mail)
4. /
5. godforhire/prowlnotifications

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

godforhire/prowlnotifications
=============================

Prowl Notifications driver for Laravel 6 and up.

1.0.1(6y ago)2592MITPHPPHP &gt;=7.2

Since Feb 5Pushed 5y ago1 watchersCompare

[ Source](https://github.com/godforhire/prowlnotifications)[ Packagist](https://packagist.org/packages/godforhire/prowlnotifications)[ Docs](https://github.com/godforhire/prowlnotifications)[ RSS](/packages/godforhire-prowlnotifications/feed)WikiDiscussions master Synced 2mo ago

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

Prowl Push Notifications Channel for Laravel 6
==============================================

[](#prowl-push-notifications-channel-for-laravel-6)

[![Latest Version on Packagist](https://camo.githubusercontent.com/db2b54ba8fdf02845cb18cbf1c76eab530d5e7d47258fe48821db811febc3be9/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f676f64666f72686972652f70726f776c6e6f74696669636174696f6e732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/godforhire/prowlnotifications)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Total Downloads](https://camo.githubusercontent.com/a932df8282ecc060272a9e2c3a01cc1c02bdb68e869dca7af83ece0fcb0d7852/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f676f64666f72686972652f70726f776c6e6f74696669636174696f6e732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/godforhire/prowlnotifications)

This package makes it easy to send notifications using [Prowl](https://prowlapp.com) with Laravel 6.

Contents
--------

[](#contents)

- [Installation](#installation)
    - [Setting up the Prowl service](#setting-up-the-prowl-service)
- [Usage](#usage)
    - [Available Message methods](#available-message-methods)
- [Changelog](#changelog)
- [License](#license)

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

[](#installation)

You can install the package via composer:

```
composer require godforhire/prowlnotifications
```

### Setting up the Prowl service

[](#setting-up-the-prowl-service)

Add your Prowl API Token to your `config/services.php`:

```
// config/services.php
'prowl' => [
    'token' => env('PROWL_API_KEY'),
]
```

Usage
-----

[](#usage)

Now you can use the channel in your `via()` method inside the notification:

```
use godforhire\ProwlNotifications\ProwlChannel;
use godforhire\ProwlNotifications\ProwlMessage;
use Illuminate\Notifications\Notification;

class BackupHasFailed extends Notification
{
    public function via($notifiable)
    {
        return [ProwlChannel::class];
    }

    public function toProwl($notifiable)
    {
        return ProwlMessage::create()
                    ->priority(2)
                    ->url('http://your.app');
                    ->application("Your App")
                    ->event("Backup failed")
                    ->description("Daily backup of Your App has failed: reason, disk S3 is unreachable.")
    }
}
```

### Available Message methods

[](#available-message-methods)

- `priority` Optional. Default value of 0 if not provided. An integer value ranging \[-2, 2\] representing: -2 Very Low, -1 Moderate, 0 Normal, 1 High, 2 Emergency. Emergency priority messages may bypass quiet hours according to the user's settings.
- `url` \[512\] Optional. The URL which should be attached to the notification. This will trigger a redirect when launched, and is viewable in the notification list.
- `application` \[256\] The name of your application or the application generating the event.
- `event` \[1024\] The name of the event or subject of the notification.
- `description` \[10000\] A description of the event, generally terse.

For more information [see Prowl website](https://www.prowlapp.com/api.php).

License
-------

[](#license)

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

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community9

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

Total

2

Last Release

2432d ago

PHP version history (2 changes)v1.0.0PHP &gt;=5.6.4

1.0.1PHP &gt;=7.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/396a5af37597be0f8b2ebb96f2319162962d484ed5a398b3da622cb690a55da2?d=identicon)[godforhire](/maintainers/godforhire)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/godforhire-prowlnotifications/health.svg)

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

###  Alternatives

[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)[laravel-notification-channels/microsoft-teams

A Laravel Notification Channel for Microsoft Teams

1603.0M7](/packages/laravel-notification-channels-microsoft-teams)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)[laravel-notification-channels/aws-sns

Amazon Simple Notification Service (AWS SNS) notification channel for Laravel.

541.1M2](/packages/laravel-notification-channels-aws-sns)

PHPackages © 2026

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