forked from xtrime-ru/TelegramRSS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 989 Bytes
/
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
{
"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", "swoole", "async", "daemon", "coroutine", "parser", "micro-service", "RSS"],
"require": {
"php": "^7.4|^8.0",
"vlucas/phpdotenv": "^4",
"ext-json": "*",
"ext-dom": "*",
"ext-simplexml": "*",
"ext-mbstring": "*"
},
"require-dev": {
"swoole/ide-helper": "^4"
},
"suggest": {
"ext-swoole": "Swoole or openswoole extension >= 4.1 required",
"ext-openswoole": "Swoole or openswoole extension >= 4.1 required"
},
"authors": [
{
"name": "Alexander Pankratov",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"TelegramRSS\\": "app/"
}
}
}