-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
37 lines (37 loc) · 918 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
32
33
34
35
36
37
{
"name": "he110/communication-tools",
"description": "Tools set for messenger managing. Allows you to send any content via Telegram, Viber, WhatsApp, VK and so on",
"keywords": ["telegram-bot", "whatsapp-bot", "viber-bot", "facebook-bot", "vk-bot", "php"],
"homepage": "https://github.com/he110/communication-tools",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ilya S. Zobenko",
"email": "ilya@zobenko.ru",
"homepage": "https://zobenko.ru"
}
],
"require": {
"php": ">=7.1",
"telegram-bot/api": "^2.3",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "^8"
},
"autoload": {
"psr-4": {"He110\\CommunicationTools\\": "src/"},
"exclude-from-classmap": [
"tests/"
]
},
"autoload-dev": {
"psr-4": {"He110\\CommunicationToolsTests\\": "tests/"}
},
"scripts": {
"test": [
"phpunit"
]
}
}