| Package Data | |
|---|---|
| Maintainer Username: | lartie |
| Maintainer Contact: | log.wil.log@gmail.com (Artie) |
| Package Create Date: | 2016-11-22 |
| Package Last Update: | 2016-11-22 |
| Home Page: | |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-10-30 03:11:08 |
| Package Statistics | |
|---|---|
| Total Downloads: | 181 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 2 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
Fork: https://github.com/botanio/sdk
composer require "lartie/laravel-botan:^1.0.0"
BOTAN_TOKEN=YOUR_BOT_TOKEN
You must install this service provider.
// 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.
// config/app.php
'aliases' => [
...
'Botan' => LArtie\LaravelBotan\Facades\Botan::class,
...
];
Botan::track($message, 'Message');
Or
$result = Botan::shortenUrl($url, $userId);
The MIT License (MIT). Please see License File for more information.