forked from tabuna/VestaAPI
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
44 lines (44 loc) · 863 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
38
39
40
41
42
43
44
{
"name": "tabuna/vesta-api",
"description": "VestaCP client for Laravel",
"keywords": [
"framework",
"laravel",
"hosting",
"vesta",
"panel"
],
"type": "library",
"require": {
"guzzlehttp/guzzle": "^6.2",
"laravel/framework": "^5.0"
},
"license": "GPL-3.0",
"support": {
"issues": "https://github.com/tabuna/VestaAPI/issues",
"source": "https://github.com/tabuna/VestaAPI"
},
"authors": [
{
"name": "Alexandr Chernyaev",
"email": "bliz48rus@gmail.com"
}
],
"autoload": {
"psr-4": {
"VestaAPI\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"VestaAPI\\Providers\\VestaServiceProvider"
],
"aliases": {
"Dashboard": "VestaAPI\\Facades\\Vesta"
}
}
},
"minimum-stability": "stable",
"prefer-stable": true
}