forked from JWaldecker/ProxmoxVE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (39 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
41
42
43
44
45
{
"name": "herrsammyde/proxmoxve",
"type": "library",
"description": "A simple PHP 5.5+ Proxmox API client.",
"keywords": ["Proxmox", "API", "KVM", "OpenVZ", "Virtualization"],
"homepage": "https://github.com/LUMASERV/ProxmoxVE",
"license": "MIT",
"version": "v4.1",
"authors": [
{
"name": "César Muñoz",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "LUMASERV Systems",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/LUMASERV/ProxmoxVE/issues",
"source": "https://github.com/LUMASERV/ProxmoxVE"
},
"require": {
"php": ">=5.5.0",
"lib-curl": "*",
"guzzlehttp/guzzle": "*"
},
"require-dev": {
"phpunit/phpunit": "~4.1",
"squizlabs/php_codesniffer": "1.*"
},
"autoload": {
"psr-4": {
"ProxmoxVE\\": "src/"
}
}
}