PHPackages                             juanrangel/laravel-converse - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. juanrangel/laravel-converse

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

juanrangel/laravel-converse
===========================

A real time chat package for laravel.

0.1.4(4y ago)020MITPHPPHP ^7.3

Since Jun 19Pushed 4y ago1 watchersCompare

[ Source](https://github.com/JuanRangel/laravel-converse)[ Packagist](https://packagist.org/packages/juanrangel/laravel-converse)[ Docs](https://github.com/juanrangel/laravel-converse)[ RSS](/packages/juanrangel-laravel-converse/feed)WikiDiscussions main Synced 3d ago

READMEChangelog (5)Dependencies (9)Versions (6)Used By (0)

A conversation package
======================

[](#a-conversation-package)

[![Latest Version on Packagist](https://camo.githubusercontent.com/c1a738ef6e6117dc7d8b4990dc698971636018da28c75bf63979ea2987d9be39/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6a75616e72616e67656c2f6c61726176656c2d636f6e76657273652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/p2/juanrangel/laravel-converse)[![Tests workflow](https://github.com/juanrangel/laravel-converse/actions/workflows/run-tests.yml/badge.svg)](https://github.com/juanrangel/laravel-converse/actions/workflows/run-tests.yml/badge.svg)[![Total Downloads](https://camo.githubusercontent.com/60dbd08ddeb78f850c3251abeeac15b71a0c347379ff4463ddc72b1e79a727ba/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6a75616e72616e67656c2f6c61726176656c2d636f6e76657273652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/p2/juanrangel/laravel-converse)

This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.

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

[](#installation)

You can install the package via composer:

```
composer require juanrangel/laravel-converse
```

Add the CanConverse trait to your user model

```
class User
{
    use JuanRangel\Converse\Traits\CanConverse;
}
```

You can publish and run the migrations with:

```
php artisan vendor:publish --provider="JuanRangel\Converse\ConverseServiceProvider" --tag="migrations"
php artisan migrate
```

You can publish the config file with:

```
php artisan vendor:publish --provider="JuanRangel\Converse\ConverseServiceProvider" --tag="config"
```

This is the contents of the published config file:

```
return [
];
```

Realtime Messages
-----------------

[](#realtime-messages)

Add your pusher info in the.env file

```
PUSHER_APP_ID=12345
PUSHER_APP_KEY=12345
PUSHER_APP_SECRET=12345
PUSHER_APP_CLUSTER=us2

```

Set your broadcast driver to pusher in the .env file

```
BROADCAST_DRIVER=pusher

```

Enable the broadcast driver by uncommenting the `App\Providers\BroadcastServiceProvider::class` in `js/config/app.php`

```
import Echo from 'laravel-echo';

window.Pusher = require('pusher-js');

window.Echo = new Echo({
    broadcaster: 'pusher',
    key: process.env.MIX_PUSHER_APP_KEY,
    cluster: process.env.MIX_PUSHER_APP_CLUSTER,
    forceTLS: true
});
```

Install laravel-echo and pusher

be sure and uncomment or add this to your `bootstrap.js` file

`npm install --save laravel-echo pusher-js`Now we can run the migration command

Run `npm run dev` to compile the assets

```
php artisan migrate
```

Make sure that the `BroadcastServiceProvider` is active in `app.php`

Usage
-----

[](#usage)

```
$laravel-converse = new JuanRangel\Converse();
echo $laravel-converse->echoPhrase('Hello, JuanRangel!');
```

We now have to install laravel-echo and pusher-js

```
npm install laravel-echo pusher-js
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Juan](https://github.com/JuanRangel)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity40

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

Total

5

Last Release

1784d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/122f3c70f6d8756005f9ab47c36e273353ba1a80c516bbb8b112e1492adda98a?d=identicon)[JuanRangel](/maintainers/JuanRangel)

---

Top Contributors

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

---

Tags

laravelmessagingvsellislaravel-converse

###  Code Quality

TestsPHPUnit

Static AnalysisPsalm

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/juanrangel-laravel-converse/health.svg)

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

###  Alternatives

[musonza/chat

Chat Package for Laravel

1.2k253.4k1](/packages/musonza-chat)[livewire/volt

An elegantly crafted functional API for Laravel Livewire.

4195.3M84](/packages/livewire-volt)[leandrocfe/filament-apex-charts

Apex Charts integration for Filament PHP.

4861.2M8](/packages/leandrocfe-filament-apex-charts)[spatie/laravel-livewire-wizard

Build wizards using Livewire

4061.0M4](/packages/spatie-laravel-livewire-wizard)[ralphjsmit/livewire-urls

Get the previous and current url in Livewire.

82270.3k4](/packages/ralphjsmit-livewire-urls)[lexxyungcarter/chatmessenger

Simple one-to-one/group chat messaging tool for Laravel 5, 6, 7, 8, 9 &amp; 10 with Pusher Integration

10724.1k](/packages/lexxyungcarter-chatmessenger)

PHPackages © 2026

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