forked from aivazoff/proxmox-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 862 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
{
"name": "skildust/proxmox-api",
"type": "library",
"description": "Proxmox API for PHP",
"keywords": ["proxmox", "proxmox api"],
"license": "MIT",
"authors": [
{
"name": "Arthur Ayvazov",
"email": "[email protected]",
"homepage": "https://github.com/armd-pro/proxmox-api"
},
{
"name": "sKiLdUsT",
"email": "[email protected]",
"homepage": "https://www.skildust.com"
}
],
"require": {
"php": ">=5.6",
"ext-curl": "*",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"ProxmoxApi\\": "src/ProxmoxApi"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra" : {
"branch-alias" : {
"dev-master" : "1.1.x-dev"
}
}
}