PHPackages                             mizanur/hipchat-notifier - 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. mizanur/hipchat-notifier

ActiveLibrary

mizanur/hipchat-notifier
========================

Hipchat Notifier for PHP

v1.2(9y ago)0556MITPHPPHP &gt;=5.3.0

Since Apr 10Pushed 9y ago1 watchersCompare

[ Source](https://github.com/mizan3008/hipchat-notifier)[ Packagist](https://packagist.org/packages/mizanur/hipchat-notifier)[ Docs](https://github.com/mizanur-rahman/hipchat-notifier.git)[ RSS](/packages/mizanur-hipchat-notifier/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (3)DependenciesVersions (4)Used By (0)

Hipchat Notifier
================

[](#hipchat-notifier)

Super-simple, minimum abstraction HipchatNotifier v2, in PHP.

Requires PHP 5.3 and a pulse.

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

[](#installation)

You can install the hipchat-notifier using Composer:

```
composer require mizanur/hipchat-notifier

```

or

```
composer require mizanur/hipchat-notifier

```

HOW TO USER
-----------

[](#how-to-user)

You can start with .env or without .env

With .env

We need setup some configuration variable in .env

```
HIPCHAT_DOMAIN=https://example.hipchat.com
HIPCHAT_TOKEN=your-room-token
HIPCHAT_ROOM_ID=your-room-id
HIPCHAT_BOT_NAME=your-bot-name (this one is optional, default bot name is HIP-BOT)

```

Initialize hipchat notifier

```
$hipchatNotifier = new \HipchatNotifier\HipchatNotifier();

```

Without .env

Initialize hipchat notifier

```
//the last param bot-name is optional, default bot name is HIP-BOT

$hipchatNotifier = new \HipchatNotifier\HipchatNotifier('YOUR-DOMAIN','YOUR-ROOM-ID','YOUR-ROOM-TOKEN', 'BOT-NAME');

```

Send error notification to your hipchat room

```
//you can pass your color as second param (red or green or yellow) default is red

$hipchatNotifier->notifyError('YOUR ERROR MESSAGE');

//or

$hipchatNotifier->notifyError('YOUR ERROR MESSAGE', 'green');

```

Send success or info notification to your hipchat room

```
//you can pass your color as second param (red or green or yellow) default is green

$hipchatNotifier->notifyInfo('YOUR MESSAGE');

//or

$hipchatNotifier->notifyInfo('YOUR MESSAGE', 'red');

```

Send exception notification to your hipchat room

```
//you can pass your color as second param (red or green or yellow) default is red

try{
    #Your code...
}catch(\Exception $ex){
    $hipchatNotifier->notifyException($ex);
}

//or

try{
    #Your code...
}catch(\Exception $ex){
    $hipchatNotifier->notifyException($ex, 'yellow');
}

```

###  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

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 85.7% 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

3

Last Release

3317d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/9748b0766b24b61753b31be891038b23e2207790d4a8892451cc4457027e4392?d=identicon)[mizan3008](/maintainers/mizan3008)

---

Top Contributors

[![mizan3008](https://avatars.githubusercontent.com/u/6143192?v=4)](https://github.com/mizan3008 "mizan3008 (6 commits)")[![mizanur-rahman](https://avatars.githubusercontent.com/u/52867202?v=4)](https://github.com/mizanur-rahman "mizanur-rahman (1 commits)")

---

Tags

hipchat-notifier-php

### Embed Badge

![Health badge](/badges/mizanur-hipchat-notifier/health.svg)

```
[![Health](https://phpackages.com/badges/mizanur-hipchat-notifier/health.svg)](https://phpackages.com/packages/mizanur-hipchat-notifier)
```

PHPackages © 2026

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