-
Notifications
You must be signed in to change notification settings - Fork 325
/
composer.json
76 lines (76 loc) · 2.18 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
73
74
75
76
{
"name": "telegram-bot/api",
"description": "PHP Wrapper for Telegram Bot API",
"keywords": [
"php",
"telegram",
"bot",
"bot api"
],
"homepage": "https://github.com/TelegramBot/Api",
"license": "MIT",
"authors": [
{
"name": "Ilya Gusev",
"email": "[email protected]",
"homepage": "https://php-cat.com",
"role": "Developer"
}
],
"require": {
"php" : ">=8.1",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"symfony/phpunit-bridge" : "*",
"friendsofphp/php-cs-fixer": "~3.28.0",
"vimeo/psalm": "^5.9",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"php-http/multipart-stream-builder": "^1.0",
"symfony/http-client": "^4.3 | ^5.0 | ^6.0",
"symfony/mime": "^4.3 | ^5.0 | ^6.0",
"guzzlehttp/guzzle": "^7.0"
},
"suggest": {
"psr/http-client": "To use psr/http-client",
"psr/http-factory": "To use psr/http-client",
"php-http/multipart-stream-builder": "To use psr/http-client",
"guzzlehttp/guzzle": "To use guzzlehttp/guzzle psr implementation",
"symfony/http-client": "To use symfony/http-client",
"symfony/mime": "To use symfony/http-client"
},
"autoload": {
"psr-4": {
"TelegramBot\\Api\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TelegramBot\\Api\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/simple-phpunit --colors=always",
"coverage": "XDEBUG_MODE=coverage vendor/bin/simple-phpunit --coverage-html build/coverage",
"psalm": "vendor/bin/psalm",
"cs-fix": "vendor/bin/php-cs-fixer fix --allow-risky=yes --diff --ansi",
"cs-check": "vendor/bin/php-cs-fixer fix --allow-risky=yes --diff --ansi --dry-run",
"checks": [
"@cs-fix",
"@psalm",
"@test"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.6-dev"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}