PHPackages                             stiko/hipchat-laravel - 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. stiko/hipchat-laravel

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

stiko/hipchat-laravel
=====================

Simple hipchat notification for laravel projects.

0.1.11(8y ago)03681PHPPHP &gt;=5.3.0

Since Jul 23Pushed 8y ago1 watchersCompare

[ Source](https://github.com/STIKO/hipchat-laravel)[ Packagist](https://packagist.org/packages/stiko/hipchat-laravel)[ Docs](https://github.com/STIKO/hipchat-laravel/tree/master)[ RSS](/packages/stiko-hipchat-laravel/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (1)Dependencies (1)Versions (7)Used By (0)

hipchat-laravel
===============

[](#hipchat-laravel)

A simple hipchat nitification for laravel/Lumen

**Laravel Installation**

- Require composer

```
composer require stiko/hipchat-laravel

```

- Add ServiceProvider to `app/config/app.php`:

```
...
'providers' => [
    ...
    HipchatNotification\HipchatLaravelServiceProvider::class,
],

```

- Publish

```
php artisan vendor:publish --provider="HipchatNotification\HipchatLaravelServiceProvider"

```

- Lastly, add env variables to `.env` file

```
HIPCHAT_TOKEN=YourTokenhere
HIPCHAT_URL=YourhipchatUrlHere

```

---

**Lumen Installation**

- Require composer

```
composer require stiko/hipchat-laravel

```

- Add ServiceProvider to `bootstrap/app.php`:

```
...
//Hipchat provider
$app->register('HipchatNotification\HipchatLaravelServiceProvider');

```

- Copy `src/config/hipchat.php` to `config/hipchat.php`
- Lastly, add env variables to `.env` file

```
HIPCHAT_TOKEN=YourTokenhere
HIPCHAT_URL=YourhipchatUrlHere

```

---

**Get Token**

1. Log in to [Hipchat](https://bouncetv.hipchat.com/addons/?from_location_id=2&source_id=1)
2. click `Integration`
3. Choose your room then click `Build your own Integration`
4. In the section `Send messages to this room` you can find your `url` and `token`[Hichat url and token](img/hipchat.png)

**Usage**

- The simplest way to start is

```
use HipchatNotification\Hipchat;
...
$hipchat = new Hipchat();
$hipchat->send();

```

This will send a message to the room with the default settings.

- To change the message:

```
$hipchat = new Hipchat();
$hipchat->message('your messsage here');
$hipchat->send();

```

- Message format allowed html, text(default):

```
$hipchat = new Hipchat();
$hipchat->messageformat('html');
$hipchat->send();

```

- To turn off room notfication (on by default):

```
$hipchat = new Hipchat();
$hipchat->notify(false);
$hipchat->send();

```

- To cahnge color, allowed (yellow, green(default), red, purple, gray, random):

```
$hipchat = new Hipchat();
$hipchat->color(green);
$hipchat->send();

```

- Or you could suply a full array of options:

```
$hipchat = new Hipchat();
$hipchat->options(
	array(
		'color' => 'green',
		'message' => 'Your message',
		'notify' => true,
		'message_format' => 'text',
	)
);
$hipchat->send();

```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity52

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

6

Last Release

3216d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8670ddf3a81a338bbc1945c4104a6c994e46786e78a8508b6303d926b0b7bfa1?d=identicon)[stiko](/maintainers/stiko)

---

Top Contributors

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

---

Tags

hipchatlaravellaravel-5-packagelaravel-frameworklumenlumen-frameworklumen-php-frameworknotificationssimplelaravelhipchat

### Embed Badge

![Health badge](/badges/stiko-hipchat-laravel/health.svg)

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

###  Alternatives

[laravel-notification-channels/telegram

Telegram Notifications Channel for Laravel

1.1k3.4M35](/packages/laravel-notification-channels-telegram)[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/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)[tzsk/sms

A robust and unified SMS gateway integration package for Laravel, supporting multiple providers.

320244.3k6](/packages/tzsk-sms)[erag/laravel-disposable-email

A Laravel package to detect and block disposable email addresses.

226102.4k](/packages/erag-laravel-disposable-email)[vemcogroup/laravel-sparkpost-driver

SparkPost driver to use with Laravel 6.x|7.x|8.x|9.x|10.x

421.7M1](/packages/vemcogroup-laravel-sparkpost-driver)

PHPackages © 2026

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