TelegramApiServer/composer.json

30 lines
739 B
JSON
Raw Normal View History

2018-12-24 13:34:04 +01:00
{
"name": "xtrime-ru/telegramapiserver",
2019-06-20 15:59:42 +02:00
"description": "Fast, simple, async php telegram client and parser: MadelineProto + Amphp Server",
2018-12-24 13:34:04 +01:00
"type": "project",
2019-06-20 15:59:42 +02:00
"homepage": "https://tg.i-c-a.su/",
2018-12-24 13:34:04 +01:00
"license": "MIT",
2019-06-09 19:18:49 +02:00
"keywords": ["telegram", "mtproto", "protocol", "client", "PHP", "amphp", "async", "daemon", "coroutine", "parser", "micro-service"],
2018-12-24 13:34:04 +01:00
"require": {
2019-12-11 11:00:41 +01:00
"php": ">=7.3.0",
2019-05-15 00:31:11 +02:00
"ext-json": "*",
2019-12-25 23:24:29 +01:00
"amphp/http-server": "^1",
"vlucas/phpdotenv": "^3"
2018-12-24 13:34:04 +01:00
},
"minimum-stability": "dev",
"authors": [
{
"name": "Alexander Pankratov",
2019-02-04 21:23:25 +01:00
"email": "alexander@i-c-a.su"
2018-12-24 13:34:04 +01:00
}
],
"autoload": {
"psr-4": {
"TelegramApiServer\\": "src/"
},
"files": [
"madeline.php"
]
2018-12-24 13:34:04 +01:00
}
2019-03-31 03:23:25 +02:00
}