LaravelBotan
Fork: https://github.com/botanio/sdk, (*1)
, (*2)
Installation
Composer
composer require "lartie/laravel-botan:^1.0.0"
Configuration
BOTAN_TOKEN=YOUR_BOT_TOKEN
Service Provider
You must install this service provider., (*3)
// config/app.php
'providers' => [
...
LArtie\LaravelBotan\LaravelBotanServiceProvider::class,
...
];
This package also comes with a facade, which provides an easy way to call the the class., (*4)
// config/app.php
'aliases' => [
...
'Botan' => LArtie\LaravelBotan\Facades\Botan::class,
...
];
Usage
Botan::track($message, 'Message');
Or, (*5)
$result = Botan::shortenUrl($url, $userId);
License
The MIT License (MIT). Please see License File for more information., (*6)