forked from TelegramBot/Api
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
48 lines (48 loc) · 1.16 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
{
"name": "luzrain/telegram-bot-api",
"description": "PHP Wrapper for Telegram Bot API",
"keywords": [
"telegram",
"bot",
"bot api",
"telegram bot api",
"telegram bot"
],
"homepage": "https://github.com/luzrain/TelegramBotApi",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Anton Zenkov",
"email": "[email protected]",
"homepage": "https://github.com/luzrain",
"role": "Developer"
},
{
"name": "Ilya Gusev",
"email": "[email protected]",
"homepage": "https://php-cat.com",
"role": "Developer"
}
],
"require": {
"php": ">=8.2",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"phpunit/phpunit" : "^10.2",
"friendsofphp/php-cs-fixer": "^3.18",
"vimeo/psalm": "^5.12"
},
"autoload": {
"psr-4": {
"Luzrain\\TelegramBotApi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Luzrain\\TelegramBotApi\\Test\\": "tests"
}
}
}