https://github.com/pascalboucher/laravel-chatkit-api
Laravel Pusher Chatkit Api wrapper
https://github.com/pascalboucher/laravel-chatkit-api
chatkit laravel laravel-5-package pusher pusher-api pusher-chatkit
Last synced: 6 months ago
JSON representation
Laravel Pusher Chatkit Api wrapper
- Host: GitHub
- URL: https://github.com/pascalboucher/laravel-chatkit-api
- Owner: pascalboucher
- License: mit
- Archived: true
- Created: 2018-06-11T18:57:41.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-20T21:09:37.000Z (about 8 years ago)
- Last Synced: 2025-03-01T22:47:04.285Z (over 1 year ago)
- Topics: chatkit, laravel, laravel-5-package, pusher, pusher-api, pusher-chatkit
- Language: PHP
- Size: 22.5 KB
- Stars: 7
- Watchers: 2
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# 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](https://github.com/pascalboucher/laravel-chatkit-api/wiki)
## Credits
- [Pascal Boucher](https://github.com/pascalboucher)
## License
laravel-chatkit-api is open-sourced software licensed under the [MIT license](https://github.com/pascalboucher/laravel-chatkit-api/blob/master/LICENSE.md)