-
Notifications
You must be signed in to change notification settings - Fork 175
/
composer.json
48 lines (48 loc) · 1.19 KB
/
composer.json
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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "unreal4u/telegram-api",
"description": "A complete Telegram bot API implementation written in PHP, with support for inline bots!",
"keywords": [
"Telegram",
"API",
"Telegram Bot"
],
"authors": [
{
"name": "Camilo Sperberg",
"email": "me+tgapi@unreal4u.com",
"homepage": "https://github.com/unreal4u/telegram-api/graphs/contributors"
}
],
"require": {
"php": ">=7.1",
"ext-json": "*",
"unreal4u/dummy-logger": "^1.0",
"react/promise": "^2.7",
"clue/block-react": "^1.3",
"yoshi2889/multipart-builder": "^0.1.1",
"amphp/artax": "^3",
"react/http": "^1.1",
"lucadevelop/telegram-entities-decoder": "^1.2.1"
},
"require-dev": {
"monolog/monolog": "^1.17",
"squizlabs/php_codesniffer": "^3.7",
"phpunit/phpunit": "^10.0",
"phpunit/php-code-coverage": "^10.0"
},
"autoload": {
"psr-4": {
"unreal4u\\TelegramAPI\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"unreal4u\\TelegramAPI\\tests\\": "tests"
}
},
"support": {
"issues": "https://github.com/unreal4u/telegram-api/issues",
"source": "https://github.com/unreal4u/telegram-api"
},
"license": "MIT"
}