banckle / chat-laravel
This is a Laravel Package to use Banckle.Chat SDK for PHP in Laravel applications quickly and easily.
Requires
- php: >=5.3.0
- illuminate/support: 4.1.*
This package is not auto-updated.
Last update: 2024-11-19 09:07:42 UTC
README
#Banckle.Chat for Laravel
This is a Laravel Package to use Banckle.Chat SDK for PHP in Laravel applications quickly and easily.
Installation
Add the following lines to your composer.json file.
require: { "banckle/chat-sdk-php": "dev-master", "banckle/chat-laravel": "dev-master" }
Run from terminal.
composer update
Add package to the list of providers. In config/app.php, add the following line to the providers array.
'Banckle\Chat\ChatServiceProvider',
Publish config files from the terminal.
php artisan config:publish banckle/chat-laravel
Edit the new config file in the config/packages/banckle/chat-laravel and enter your Banckle API Key, email & password.
return array( 'banckleAccountUri' => 'https://apps.banckle.com/api/v2', 'banckleChatUri' => 'https://chat.banckle.com/v3', 'apiKey' => '', 'email' => '', 'password' => '' );
In config/packages/banckle, rename chat-laravel to chat
Usage
Anywhere in your application when you need to access class, just do:
// To Generate token BanckleChat::getToken(); BanckleChat::get($apiName, $token);
This will return you object of class and you can access properties and methods of class.