antonosipov / telegram-common
There is no license information available for the latest version (0.1.6.1) of this package.
0.1.6.1
2024-11-09 08:20 UTC
Requires
- guzzlehttp/guzzle: ^7.7
- illuminate/collections: ^v11.30
- illuminate/console: ^11.30
- illuminate/contracts: ^11.30
- illuminate/http: ^11.30
- illuminate/support: ^11.30
README
How to install
composer require antonosipov/telegram-common
php artisan vendor:publish --provider="Antonosipov\TelegramCommon\Providers\TelegramCommonServiceProvider"
Add to .env
TELEGRAM_TOKEN=<token_here>
or change env variable in config/telegram-common.php
Config
You can get telegram entities from Request easy, example echo-bot:
namespace App\Http\Controllers; use Antonosipov\TelegramCommon\Message; use Antonosipov\TelegramCommon\TelegramService; use Illuminate\Http\Request; class TelegramHookController extends Controller { public function __construct(protected TelegramService $telegramService) { } public function hook(Request $request) { $message = Message::fromRequest($request); if($message){ $this->telegramService->sendMessage($message->getChat()->getId(), $message->getText()); } } }