This repository has been archived by the owner on Mar 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
62 lines (62 loc) · 1.45 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "andrey-helldar/vk",
"description": "Laravel package for VK API",
"type": "library",
"license": "MIT",
"homepage": "http://ai-rus.com",
"keywords": [
"vk",
"vk.com",
"laravel",
"api",
"vk api"
],
"support": {
"issues": "https://github.com/andrey-helldar/vk/issues",
"source": "https://github.com/andrey-helldar/vk"
},
"authors": [
{
"name": "Andrey Helldar",
"email": "helldar@ai-rus.com"
}
],
"require": {
"php": ">=5.6.4",
"illuminate/http": "^5.4",
"illuminate/bus": "^5.4",
"illuminate/queue": "^5.4",
"illuminate/database": "^5.4",
"illuminate/console": "^5.4",
"illuminate/support": "^5.4",
"illuminate/routing": "^5.4",
"illuminate/validation": "^5.4",
"illuminate/view": "^5.4",
"guzzlehttp/guzzle": "^6.0",
"nesbot/carbon": "^1.22"
},
"require-dev": {
"phpunit/phpunit": "^5.7|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"Helldar\\Vk\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Helldar\\Vk\\VkServiceProvider"
]
}
}
}