-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 1.39 KB
/
composer.json
File metadata and controls
68 lines (68 loc) · 1.39 KB
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
62
63
64
65
66
67
68
{
"name": "yageorgiy/botman-vk-community-callback-driver",
"license": "MIT",
"description": "A VK community callback driver for botman.io framework",
"keywords": [
"Bot",
"BotMan",
"VK",
"VK API",
"VK Messages",
"VK Community",
"VK Callback",
"Vkontakte",
"Vkontakte Bot",
"Vkontakte Community Bot"
],
"homepage": "https://github.com/yageorgiy/botman-vk-community-callback-driver",
"authors": [
{
"name": "Yankovskiy Georgiy",
"email": "admin@yageorgiy.ru"
}
],
"require": {
"php": ">=7.0",
"botman/botman": "~2.0|~3.0",
"ext-json": "*",
"ext-curl": "*",
"ralouphie/mimey": "^2.1",
"ext-fileinfo": "*"
},
"require-dev": {
"botman/studio-addons": "~1.0",
"phpunit/phpunit": "~5.0",
"illuminate/contracts": "~5.5.0",
"mockery/mockery": "~1.3.3"
},
"autoload": {
"psr-4": {
"BotMan\\Drivers\\VK\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"cs": "php-cs-fixer fix"
},
"extra": {
"branch-alias": {
"dev-master": "1.7.x-dev"
},
"laravel": {
"providers": [
"BotMan\\Drivers\\VK\\Providers\\VKServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": true,
"thecodingmachine/discovery": true
}
}
}