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

Latest commit

 

History

History
42 lines (24 loc) · 975 Bytes

README.md

File metadata and controls

42 lines (24 loc) · 975 Bytes

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