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(9y ago)03681PHPPHP &gt;=5.3.0

Since Jul 23Pushed 9y 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 4w 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 40% 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

3308d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/8698522?v=4)[stiko](/maintainers/stiko)[@stiko](https://github.com/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

[aws/aws-sdk-php

AWS SDK for PHP - Use Amazon Web Services in your PHP project

6.2k555.0M2.8k](/packages/aws-aws-sdk-php)[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k832.6k52](/packages/neuron-core-neuron-ai)[unopim/unopim

UnoPim Laravel PIM

10.8k2.5k](/packages/unopim-unopim)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3661.3M49](/packages/tencentcloud-tencentcloud-sdk-php)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

353.6k](/packages/eslazarev-wildberries-sdk)[erag/laravel-disposable-email

A Laravel package to detect and block disposable email addresses.

265192.2k1](/packages/erag-laravel-disposable-email)

PHPackages © 2026

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