forked from xtrime-ru/TelegramApiServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.05 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
{
"name": "xtrime-ru/telegramapiserver",
"description": "Fast, simple, async php telegram client and parser: MadelineProto + Amp HTTP Server",
"type": "project",
"homepage": "https://tg.i-c-a.su/",
"license": "MIT",
"keywords": ["telegram", "mtproto", "protocol", "client", "PHP", "amphp", "async", "daemon", "coroutine", "parser", "micro-service"],
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pcntl": "*",
"amphp/http-server": "^2",
"amphp/http-server-router": "^1",
"amphp/websocket-server": "dev-master",
"amphp/websocket-client": "^1",
"amphp/http-client": "^4",
"vlucas/phpdotenv": "^4",
"danog/madelineproto":"dev-ipc_off",
"amphp/http-server-form-parser": "^1.1"
},
"require-dev": {
"roave/security-advisories": "dev-master"
},
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Alexander Pankratov",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"TelegramApiServer\\": "src/"
}
}
}