forked from zzantares/ProxmoxVE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (38 loc) · 1 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
{
"name": "linushstge/proxmox",
"type": "library",
"description": "A simple PHP 7+ Proxmox API client for VE and MG.",
"keywords": ["Proxmox", "API", "KVM", "OpenVZ", "Virtualization"],
"homepage": "https://github.com/linushstge/Proxmox",
"license": "MIT",
"authors": [
{
"name": "César Muñoz",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Linus Holtstiege",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/linushstge/Proxmox/issues",
"source": "https://github.com/linushstge/Proxmox"
},
"require": {
"php": ">=7.0.0",
"lib-curl": "*",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "~4.1",
"squizlabs/php_codesniffer": "1.*"
},
"autoload": {
"psr-4": {
"Proxmox\\": "src/"
}
}
}