Skip to content
This repository has been archived by the owner on Oct 8, 2019. It is now read-only.

pascalboucher/laravel-chatkit-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Chatkit API

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