-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathcomposer.json
62 lines (62 loc) · 1.79 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
{
"name": "php-telegram-bot/telegram-bot-manager",
"type": "library",
"description": "PHP Telegram Bot Manager",
"keywords": ["telegram", "bot", "manager"],
"license": "MIT",
"homepage": "https://github.com/php-telegram-bot/telegram-bot-manager",
"support": {
"issues": "https://github.com/php-telegram-bot/telegram-bot-manager/issues",
"source": "https://github.com/php-telegram-bot/telegram-bot-manager"
},
"authors": [
{
"name": "Armando Lüscher",
"email": "[email protected]",
"homepage": "https://noplanman.ch",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"longman/telegram-bot": "^0.81",
"longman/ip-tools": "^1.2",
"psr/log": "^1.0|^2.0|^3.0"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"TelegramBot\\TelegramBotManager\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TelegramBot\\TelegramBotManager\\Tests\\": "tests"
}
},
"scripts": {
"check-code": [
"vendor/bin/parallel-lint . --exclude vendor",
"vendor/bin/phpcs"
],
"test": [
"vendor/bin/phpunit --exclude-group live"
],
"test-live": [
"vendor/bin/phpunit"
],
"test-cov": [
"vendor/bin/phpunit --coverage-clover coverage.xml --exclude-group live"
],
"test-cov-live": [
"vendor/bin/phpunit --coverage-clover coverage.xml"
],
"test-cov-upload": [
"curl -s https://codecov.io/bash | bash"
]
}
}