-
Notifications
You must be signed in to change notification settings - Fork 70
/
composer.json
72 lines (72 loc) · 1.63 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
67
68
69
70
71
72
{
"name": "tg-bot-api/bot-api-base",
"type": "library",
"description": "Clear and simple Telegram bot API",
"keywords": [
"tg-bot-api",
"telegram-bot-api",
"telegram",
"telegram-bot",
"telegram-php",
"php-telegram-bot",
"bot",
"php-bot"
],
"homepage": "https://github.com/tg-bot-api/telegram-bot-api",
"license": "MIT",
"authors": [
{
"name": "TgBotApi",
"email": "[email protected]",
"homepage": "https://github.com/greenplugin",
"role": "Developer"
}
],
"require": {
"php": ">7.3",
"ext-json": "*",
"phpdocumentor/reflection-docblock": "^4.3|^5.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"symfony/property-access": "^3.4|^4.3|^5.0|^6.0",
"symfony/property-info": "^3.4|^4.3|^5.0|^6.0",
"symfony/serializer": "^3.4|^4.3|^5.0|^6.0",
"ext-fileinfo": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.13",
"phpro/grumphp": "^1.1.0",
"phpstan/phpstan": "^0.10.6|^0.12.20",
"phpunit/phpunit": "^8.5",
"povils/phpmnd": "^2.0",
"sebastian/phpcpd": "^5.0",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"psr-4": {
"TgBotApi\\BotApiBase\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TgBotApi\\BotApiBase\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpro/grumphp": true
}
}
}