12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- return [
-
- 'bot_token' => env('TELEGRAM_BOT_TOKEN', '869244226:AAG1K-ku_c7q-8TgaaEKR9k14kEWZ7AqfCs'),
-
- 'async_requests' => env('TELEGRAM_ASYNC_REQUESTS', false),
-
- 'http_client_handler' => null,
-
- 'commands' => [
- Telegram\Bot\Commands\HelpCommand::class,
- ],
- ];
|