chess/laravel-chatkit-api

This package is abandoned and no longer maintained. The author suggests using the shalvah/pusher-chatkit-laravel package instead.

Laravel wrapper for the pusher chatkit api

v0.2.1 2018-06-20 21:07 UTC

This package is auto-updated.

Last update: 2019-10-08 14:56:36 UTC


README

An API wrapper for Pusher Chatkit.

Installation

composer require chess/laravel-chatkit-api

php artisan vendor:publish --provider="Chess\Chatkit\ChatkitServiceProvider"

If you're using Laravel 5.5+ this is all there is to do.

For Laravel versions before 5.5, you must register the service provider in your config/app.php

  1. Add a new item to the providers array:

    Chess\Chatkit\ChatkitServiceProvider::class,
    
  2. Add a new item to the aliases array:

    'Chatkit' => Chess\Chatkit\Facades\Chatkit::class,
    

Documentation

The documentation can be found in the project's wiki section.

Documentation

Credits

License

laravel-chatkit-api is open-sourced software licensed under the MIT license