-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 2.03 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 2.03 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
{
"name": "digitalstars/simplevk",
"description": "Powerful PHP library/framework for VK API bots, supporting LongPoll & Callback & OAuth",
"license": "MIT",
"support": {
"issues": "https://github.com/digitalstars/simpleVK-php/issues",
"source": "https://github.com/digitalstars/simpleVK-php",
"docs": "https://simplevk.scripthub.ru/"
},
"keywords": [
"php",
"vk",
"vkontakte",
"vk.com",
"api",
"vk-api",
"wrapper",
"sdk",
"framework",
"library",
"client",
"bot",
"chatbot",
"vk-bot",
"longpoll",
"callback",
"auth",
"oauth",
"posting",
"keyboard",
"buttons"
],
"minimum-stability": "beta",
"prefer-stable": true,
"homepage": "https://simplevk.scripthub.ru/",
"require": {
"php": ">=8.2",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"psr/simple-cache": "^3.0",
"symfony/cache": "^7.3"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"ext-openssl": "*",
"vimeo/psalm": "^7.0.0-beta6"
},
"suggest": {
"ext-redis": "Для обнаружения дублирующихся событий от VK API и их игнорирования",
"ext-pcntl": "Автоматическая многопоточная обработка событий через Longpoll",
"ext-posix": "Автоматическая многопоточная обработка событий через Longpoll",
"ext-ffi": "Для ускорения проверки длинны сообщений и разбивки отправляемых сообщений"
},
"autoload": {
"files": [
"src/Compatibility.php"
],
"psr-4": {
"DigitalStars\\SimpleVK\\": "src/"
}
},
"scripts": {
"psalm": "vendor/bin/psalm --config=psalm.xml"
}
}