-
Notifications
You must be signed in to change notification settings - Fork 127
/
composer.json
62 lines (62 loc) · 1.48 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "xtrime-ru/telegramapiserver",
"description": "Fast, simple, async php telegram client and parser: MadelineProto + Amphp HTTP Server",
"type": "project",
"homepage": "https://tg.i-c-a.su/",
"license": "MIT",
"keywords": [
"telegram",
"mtproto",
"client",
"PHP",
"amphp",
"async",
"daemon",
"coroutine",
"parser",
"micro-service",
"madelineproto"
],
"require": {
"php": "^8.2",
"ext-json": "*",
"ext-mbstring": "*",
"ext-curl": "*",
"amphp/http-server": "^v3",
"amphp/http": "^v2",
"amphp/http-server-router": "^2",
"amphp/http-server-form-parser": "^v2",
"amphp/websocket-server": "^3.0.1",
"amphp/websocket-client": "^v2",
"vlucas/phpdotenv": "^4.3",
"danog/madelineproto": "dev-v8-tas",
"amphp/dns": "2.x-dev"
},
"require-dev": {
"amphp/php-cs-fixer-config": "^2.0.1"
},
"suggest": {
"ext-pcntl": "Install pcintl for propper signal handling and healthcheck (enabled in .env)"
},
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Alexander Pankratov",
"email": "alexander@i-c-a.su"
}
],
"autoload": {
"psr-4": {
"TelegramApiServer\\": "src/"
}
},
"config": {
"allow-plugins": {
"symfony/thanks": false
}
},
"scripts": {
"cs-fix": "PHP_CS_FIXER_IGNORE_ENV=1 php -d pcre.jit=0 vendor/bin/php-cs-fixer fix -v --rules='{\"@PSR12\": true, \"declare_strict_types\": false}' ."
}
}