forked from php-telegram-bot/telegram-bot-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.82 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
{
"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": "^7.0",
"longman/telegram-bot": "^0.44",
"longman/ip-tools": "^1.2"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "^0.9.2",
"phpunit/phpunit": "^6.1",
"squizlabs/php_codesniffer": "^2.9"
},
"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 --standard=psr2 src/ tests/ -snp --encoding=utf-8 --report-width=150"
],
"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"
]
}
}