-
-
Notifications
You must be signed in to change notification settings - Fork 190
/
composer.json
31 lines (31 loc) · 914 Bytes
/
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
{
"name": "telegram-bot/example-bot",
"type": "project",
"description": "PHP Telegram Bot Example",
"keywords": ["telegram", "bot", "example"],
"license": "MIT",
"homepage": "https://github.com/php-telegram-bot/example-bot",
"support": {
"issues": "https://github.com/php-telegram-bot/example-bot/issues",
"source": "https://github.com/php-telegram-bot/example-bot"
},
"authors": [
{
"name": "PHP Telegram Bot Team",
"homepage": "https://github.com/php-telegram-bot/example-bot/graphs/contributors",
"role": "Developer"
}
],
"require": {
"longman/telegram-bot": "*"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.2",
"squizlabs/php_codesniffer": "^3.5"
},
"scripts": {
"check-code": [
"\"vendor/bin/phpcs\""
]
}
}