-
Notifications
You must be signed in to change notification settings - Fork 105
/
composer.json
39 lines (33 loc) · 898 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
{
"name": "zzantares/proxmoxve",
"type": "library",
"description": "A simple PHP 5.5+ Proxmox API client.",
"keywords": ["Proxmox", "API", "KVM", "OpenVZ", "Virtualization"],
"homepage": "https://github.com/ZzAntares/ProxmoxVE",
"license": "MIT",
"authors": [
{
"name": "César Muñoz",
"email": "zzantares@gmail.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/ZzAntares/ProxmoxVE/issues",
"source": "https://github.com/ZzAntares/ProxmoxVE"
},
"require": {
"php": ">=5.5.0",
"lib-curl": "*",
"guzzlehttp/guzzle": "~6.0 || ~7.0"
},
"require-dev": {
"phpunit/phpunit": "~4.1",
"squizlabs/php_codesniffer": "1.*"
},
"autoload": {
"psr-4": {
"ProxmoxVE\\": "src/"
}
}
}