-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
66 lines (66 loc) · 1.87 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
63
64
65
66
{
"name": "vjik/telegram-bot-api",
"type": "library",
"description": "PHP library for working with Telegram API",
"keywords": [
"telegram",
"bot",
"api"
],
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/vjik/telegram-bot-api/issues?state=open",
"source": "https://github.com/vjik/telegram-bot-api",
"chat": "https://t.me/predvoditelev_chat"
},
"authors": [
{
"name": "Sergei Predvoditelev",
"homepage": "https://predvoditelev.ru"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.2",
"php-http/multipart-stream-builder": "^1.4.2",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.1",
"psr/http-message": "^1.1|^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.67",
"httpsoft/http-message": "^1.1.6",
"maglnet/composer-require-checker": "^4.14",
"php-http/curl-client": "^2.3.3",
"phpunit/phpunit": "^10.5.40",
"psr/log": "^3.0.2",
"roave/infection-static-analysis-plugin": "^1.35",
"vimeo/psalm": "^5.26.1",
"yiisoft/test-support": "^3.0.1"
},
"suggest": {
"psr/log": "To log requests to Telegram Bot API and response handling errors."
},
"autoload": {
"psr-4": {
"Vjik\\TelegramBot\\Api\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Vjik\\TelegramBot\\Api\\Tests\\": "tests"
}
},
"scripts": {
"cs-fix": "php-cs-fixer fix"
},
"config": {
"sort-packages": true,
"bump-after-update": "dev",
"allow-plugins": {
"infection/extension-installer": true,
"composer/package-versions-deprecated": true,
"php-http/discovery": false
}
}
}