forked from lartie/Telegram-Bot-Pagination
-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
60 lines (60 loc) · 1.8 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
{
"name": "php-telegram-bot/inline-keyboard-pagination",
"type": "library",
"description": "PHP Telegram Bot InlineKeyboard Pagination",
"keywords": ["telegram", "bot", "inline", "keyboard", "pagination", "callback", "query"],
"license": "MIT",
"homepage": "https://github.com/php-telegram-bot/inline-keyboard-pagination",
"support": {
"issues": "https://github.com/php-telegram-bot/inline-keyboard-pagination/issues",
"source": "https://github.com/php-telegram-bot/inline-keyboard-pagination"
},
"authors": [
{
"name": "Armando Lüscher",
"email": "armando@noplanman.ch",
"homepage": "https://noplanman.ch",
"role": "Developer"
},
{
"name": "Artie",
"email": "log.wil.log@gmail.com",
"homepage": "https://github.com/lartie",
"role": "Original developer"
}
],
"require": {
"php": "^7.4|^8.0"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"TelegramBot\\InlineKeyboardPagination\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TelegramBot\\InlineKeyboardPagination\\Tests\\": "tests"
}
},
"scripts": {
"check-code": [
"vendor/bin/parallel-lint . --exclude vendor",
"vendor/bin/phpcs"
],
"test": [
"vendor/bin/phpunit"
],
"test-cov": [
"@putenv XDEBUG_MODE=coverage",
"vendor/bin/phpunit --coverage-clover coverage.xml"
],
"test-cov-upload": [
"curl -s https://codecov.io/bash | bash"
]
}
}