-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "vanloctech/telehook",
"description": "Telegram Webhook - Laravel package for Webhook handle commands on telegram",
"keywords": ["Telegram", "telegram bot command", "telegram webhook", "laravel", "telehook", "laravel telegram"],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Vanloctech\\Telehook\\": "src/"
}
},
"require": {
"php": ">=7.3",
"ext-json": "*",
"irazasyed/telegram-bot-sdk": "v3.7|v3.8|v3.9",
"illuminate/support": "5.8 - 9"
},
"authors": [
{
"name": "Loc Nguyen",
"email": "vanloctech@gmail.com",
"role": "Developer"
}
],
"extra": {
"laravel": {
"providers": [
"Vanloctech\\Telehook\\TelehookServiceProvider"
],
"aliases": {
"Telehook": "Vanloctech\\Telehook\\Facades\\TelechookFacade"
}
}
},
"minimum-stability": "dev"
}