-
Notifications
You must be signed in to change notification settings - Fork 44
/
composer.json
43 lines (43 loc) · 1.2 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
{
"name": "xtrime-ru/telegramrss",
"description": "Fast, simple, async PHP Telegram RSS & JSON 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", "RSS"],
"repositories": [
{
"type": "github",
"url": "https://github.com/xtrime-ru/dns"
}
],
"require": {
"php": "^8.1.17||^8.2.4",
"amphp/http-server": "^3",
"amphp/http-server-router": "^2",
"amphp/http-client": "^5",
"amphp/http-server-static-content": "^2",
"amphp/file": "^3",
"amphp/http": "^2",
"amphp/dns": "2.x-dev",
"vlucas/phpdotenv": "^5",
"ext-json": "*",
"ext-dom": "*",
"ext-simplexml": "*",
"ext-mbstring": "*",
"ext-pcntl": "*"
},
"prefer-stable": true,
"minimum-stability": "dev",
"authors": [
{
"name": "Alexander Pankratov",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"TelegramRSS\\": "app/"
}
}
}