PHPackages                             manoaratefy/monolog-pushbullet - 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. [Logging &amp; Monitoring](/categories/logging)
4. /
5. manoaratefy/monolog-pushbullet

ActiveLibrary[Logging &amp; Monitoring](/categories/logging)

manoaratefy/monolog-pushbullet
==============================

Yet another Monolog handler for Pushbullet

1.0.2(2y ago)016MITPHPPHP ^8.1

Since Jul 13Pushed 2y ago1 watchersCompare

[ Source](https://github.com/manoaratefy/monolog-pushbullet)[ Packagist](https://packagist.org/packages/manoaratefy/monolog-pushbullet)[ RSS](/packages/manoaratefy-monolog-pushbullet/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (3)Dependencies (1)Versions (4)Used By (0)

Laravel Pushbullet Logger
=========================

[](#laravel-pushbullet-logger)

[![Latest Version on Packagist](https://camo.githubusercontent.com/73d4d03a24013c73d738aabfda38a670275d36aea155d860f446bf77fdd35bed/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d616e6f617261746566792f6d6f6e6f6c6f672d7075736862756c6c65742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/manoaratefy/monolog-pushbullet)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Total Downloads](https://camo.githubusercontent.com/33dcf22f29322b9d60e45aeddcc946badbb0a687e5fa00c75df149d8be08ded8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6d616e6f617261746566792f6d6f6e6f6c6f672d7075736862756c6c65742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/manoaratefy/monolog-pushbullet)

`manoaratefy/monolog-pushbullet` is a laravel package providing a logging handler to send logs to Pushbullet.

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

[](#installation)

You can install the package via composer:

```
composer require manoaratefy/monolog-pushbullet
```

Setup
-----

[](#setup)

### Get access token from Pushbullet

[](#get-access-token-from-pushbullet)

You will need an access token from a Pushbullet account.

### Add/edit your Laravel logging channel

[](#addedit-your-laravel-logging-channel)

You must add a new channel or edit an existing channel. This will be done into your `config/logging.php` file:

```
// config/logging.php
'channels' => [
    //...
    'pushbullet' => [
        'driver' => 'monolog',
        'level' => env('LOG_LEVEL', 'debug'),
        'handler' => \Manoaratefy\MonologPushbullet\LogHandler::class,
        'with' => [
            'title'       => env('PUSHBULLET_NOTIFICATION_TITLE'),
            'accessToken' => env('PUSHBULLET_ACCESSTOKEN'),
            'emails'      => env('PUSHBULLET_TARGET'),
        ],
    ],
];
```

You can then provide the settings in your `.env` file:

```
PUSHBULLET_NOTIFICATION_TITLE="Notification from MyApp"
PUSHBULLET_ACCESSTOKEN="xxxxxxxxxxxx"
PUSHBULLET_TARGET="my-pushbullet@email-account.com"

```

You can provide multiple email accounts by separating them with a comma (`,`) or by providing an array:

```
// config/logging.php
'channels' => [
    //...
    'pushbullet' => [
        'driver' => 'monolog',
        'level' => env('LOG_LEVEL', 'debug'),
        'handler' => \Manoaratefy\MonologPushbullet\LogHandler::class,
        'with' => [
            'title'       => env('PUSHBULLET_NOTIFICATION_TITLE'),
            'accessToken' => env('PUSHBULLET_ACCESSTOKEN'),
            'emails'      => [
                'email1@example.com',
                'email2@example.com',
            ],
        ],
    ],
];
```

Credits
-------

[](#credits)

- Got some ideas from [marvinlabs/laravel-discord-logger](https://github.com/marvinlabs/laravel-discord-logger)

License
-------

[](#license)

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

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity58

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

Total

3

Last Release

825d ago

PHP version history (3 changes)1.0.0PHP ^7.3|^8.0

1.0.1PHP ^8.0

1.0.2PHP ^8.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/2adacb73c28080be43d2a09b4bed109bacf78f52918d65192331721f42f04da4?d=identicon)[manoaratefy](/maintainers/manoaratefy)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/manoaratefy-monolog-pushbullet/health.svg)

```
[![Health](https://phpackages.com/badges/manoaratefy-monolog-pushbullet/health.svg)](https://phpackages.com/packages/manoaratefy-monolog-pushbullet)
```

###  Alternatives

[overtrue/laravel-query-logger

A dev tool to log all queries for laravel application.

413307.5k6](/packages/overtrue-laravel-query-logger)[guanguans/laravel-exception-notify

Monitor exception and report to the notification channels(Log、Mail、AnPush、Bark、Chanify、DingTalk、Discord、Gitter、GoogleChat、IGot、Lark、Mattermost、MicrosoftTeams、NowPush、Ntfy、Push、Pushback、PushBullet、PushDeer、PushMe、Pushover、PushPlus、QQ、RocketChat、ServerChan、ShowdocPush、SimplePush、Slack、Telegram、WeWork、WPush、XiZhi、YiFengChuanHua、ZohoCliq、ZohoCliqWebHook、Zulip).

14642.7k1](/packages/guanguans-laravel-exception-notify)[regulus/activity-log

A clean and simple Laravel 5 activity logger for monitoring user activity on a website or web application.

164220.1k2](/packages/regulus-activity-log)

PHPackages © 2026

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