forked from php-telegram-bot/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.02 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
{
"name": "longman/telegram-bot",
"type": "library",
"description": "PHP telegram bot",
"keywords": ["telegram", "bot", "api"],
"license": "MIT",
"homepage": "https://github.com/akalongman/php-telegram-bot",
"support": {
"issues": "https://github.com/akalongman/php-telegram-bot/issues",
"source": "https://github.com/akalongman/php-telegram-bot"
},
"authors": [
{
"name": "Avtandil Kikabidze aka LONGMAN",
"email": "[email protected]",
"homepage": "http://longman.me",
"role": "Developer"
}
],
"require": {
"php": ">=5.5.0",
"ext-pdo": "*",
"ext-curl": "*"
},
"autoload": {
"psr-4": {
"Longman\\TelegramBot\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "~4.1",
"phpspec/phpspec": "~2.1",
"squizlabs/php_codesniffer": "~2.3"
}
}