PHPackages                             max13/monobullet - 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. max13/monobullet

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

max13/monobullet
================

Monobullet is a Monolog handler that notifies via Pushbullet API

v1.2(9y ago)71.5k[1 issues](https://github.com/Max13/Monobullet/issues)MITPHPPHP &gt;=5.4

Since Jun 13Pushed 9y ago2 watchersCompare

[ Source](https://github.com/Max13/Monobullet)[ Packagist](https://packagist.org/packages/max13/monobullet)[ RSS](/packages/max13-monobullet/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (4)Versions (5)Used By (0)

Max13/Monobullet [![GitHub license](https://camo.githubusercontent.com/7013272bd27ece47364536a221edb554cd69683b68a46fc0ee96881174c4214c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667)](https://raw.githubusercontent.com/max13/Monobullet/master/LICENSE)
===============================================================================================================================================================================================================================================================================================================

[](#max13monobullet-)

[![Build Status](https://camo.githubusercontent.com/979258ef9e478eb0b96f81619eef438643407557d7ba82886de2b849882d43b6/68747470733a2f2f7472617669732d63692e6f72672f4d617831332f4d6f6e6f62756c6c65742e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/Max13/Monobullet)

`Monobullet` is simply a [`Pushbullet`](http://pushbullet.com) handler for [Monolog](https://github.com/Seldaek/monolog). It will send you (or someone else, or many people) a push when your app logs something.

It includes a nice formatter for when logging an `Exception` and its stack.

For the record, `Pushbullet` is a platform allowing you to send a push to one or multiple devices using the mobile app, the web app or REST APIs.

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

[](#installation)

You can install the latest version with:

```
$ composer require max13/monobullet

```

### Laravel 5.2 and above/similars

[](#laravel-52-and-abovesimilars)

Add these lines to your `config/services.php`:

```
'monobullet' => [
    'token' => 'YOUR PUSHBULLET TOKEN',
    'name' => 'NAME OF YOUR APP',
    'recipients' => 'email',
    'level' => Monolog\Logger::INFO,
    'propagate' => true,
    'env' => ['staging', 'production'],
],
```

Here are the variables references:

- `token`: Your Pushbullet api token.
- `name`: The name of your app, will be used to make the push's title.
- `recipients`: Can either be 1 email address, or an array of email addresses.
- `level`: Minimum level to take care. The default is `Monolog\Logger:INFO`.
- `propagate`: When `false`, if a record is handled, it won't be propagated to other handlers.
- `env`: Can either be 1 environment name (like `production`) or an array of environment name.

Then, add this line to Laravel's `config/app.php`, inside the `providers` array:

```
    Monobullet\MonobulletServiceProvider::class,
```

/!\\ Note that when using Service Provider, `Monobullet` will be set on the top of the `Monolog's` handlers, so the `bubble` parameter is important. After that you're good to go!

### Other frameworks

[](#other-frameworks)

Put this wherever your framework's doc is telling you to do (`parameters` references are above):

```
use Monobullet\PushbulletHandler;
// or: use Monobullet\Handler;
use Monolog\Logger;

$logger = new Logger('NAME'); // Will be used as the title of the push
$logger->pushHandler(new PushbulletHandler('PUSHBULLET_TOKEN', $recipients, $level = Logger::INFO, $bubble = false));
$logger->info('This is just a test log'); // You will receive a push saying this content
```

Issues/PRs/Questions
--------------------

[](#issuesprsquestions)

Feel free to open an issue if you need anything. The same way, don't hesitate to send PRs ;)

When sending a PR, don't forget to add your name in the "Contributors" section of this README.

Authors
-------

[](#authors)

Currently, I'm the only author of this package:

- Adnan RIHAN

Contributors
------------

[](#contributors)

- None (yet)

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance17

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity61

Established project with proven stability

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

Total

4

Last Release

3615d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/531249?v=4)[Adnan RIHAN](/maintainers/Max13)[@Max13](https://github.com/Max13)

---

Top Contributors

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

---

Tags

laravelnotificationmonologpushbullet

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/max13-monobullet/health.svg)

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

###  Alternatives

[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)[osa-eg/laravel-teams-notification

A Laravel package to send notifications to Microsoft Teams

71257.5k1](/packages/osa-eg-laravel-teams-notification)[naoray/laravel-github-monolog

Log driver to store logs as github issues

10619.4k](/packages/naoray-laravel-github-monolog)[shaffe/laravel-mail-log-channel

A package to support logging via email in Laravel

1286.2k](/packages/shaffe-laravel-mail-log-channel)[yzen.dev/mono-processor

This Processor will display in the logs bread crumbs by which you can more quickly and accurately identify the cause of the error.

116.1k](/packages/yzendev-mono-processor)

PHPackages © 2026

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