Lurkchat is reliable, secure and anonymous messenger.
Visit lurkchat.com
Sign up for free without email and other sensitive data and have pleasure with messaging and many other features
composer require lurkchat/bot-php
...
"require": {
...
"lurkchat/bot-php": "^1.0"
}
composer install
require_once("vendor/autoload.php");
$token = %YOUR_BOT_TOKEN%;
$bot = new \Lurkchat\LurkchatBot($token);
php artisan vendor:publish --provider="Lurkchat\Laravel\LurkchatBotServiceProvider" --tag="config"
LURKCHAT_BOT_TOKEN=%YOUR_BOT_TOKEN%
use Lurkchat\Laravel\Facades\LurkchatBot;
$bot = LurkchatBot::make($token);
$bot = new \Lurkchat\LurkchatBot($token);
$info = $bot->getMe();
$info = LurkchatBot::getMe();
$info = LurkchatBot::make($token)->getMe();