-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
83 lines (83 loc) · 2.19 KB
/
composer.json
File metadata and controls
83 lines (83 loc) · 2.19 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "phptg/bot-api",
"description": "PHP library for working with Telegram API",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"telegram",
"bot",
"api"
],
"authors": [
{
"name": "Sergei Predvoditelev",
"homepage": "https://predvoditelev.ru"
}
],
"support": {
"issues": "https://github.com/phptg/bot-api/issues?state=open",
"chat": "https://t.me/predvoditelev_chat",
"source": "https://github.com/phptg/bot-api"
},
"funding": [
{
"type": "cloudtips",
"url": "https://pay.cloudtips.ru/p/192ce69b"
},
{
"type": "boosty",
"url": "https://boosty.to/vjik"
}
],
"require": {
"php-64bit": "8.2 - 8.5"
},
"require-dev": {
"ext-curl": "*",
"bamarni/composer-bin-plugin": "^1.9.1",
"php-http/curl-client": "^2.4.0",
"phpunit/phpunit": "^11.5.51",
"psr/log": "^3.0.2",
"yiisoft/files": "^2.1",
"yiisoft/test-support": "^3.2.0"
},
"suggest": {
"ext-curl": "To use `CurlTransport`.",
"psr/log": "To log requests to Telegram Bot API and response handling errors."
},
"autoload": {
"psr-4": {
"Phptg\\BotApi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Phptg\\BotApi\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"composer/package-versions-deprecated": true,
"infection/extension-installer": true,
"php-http/discovery": false
},
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": true,
"forward-command": true,
"target-directory": "tools"
}
},
"scripts": {
"cs-fix": "php-cs-fixer fix",
"dependency-analyser": "composer-dependency-analyser",
"infection": "infection --threads=max",
"psalm": "psalm",
"rector": "rector",
"test": "phpunit",
"test-real": "phpunit --group=realApi"
}
}