forked from omines/directadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 820 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 820 Bytes
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
{
"name": "moddit/directadmin",
"type": "library",
"description": "PHP client library to manage DirectAdmin control panel servers.",
"license": "MIT",
"keywords": [
"library", "php", "directadmin", "control panel", "api", "direct admin"
],
"homepage": "https://github.com/omines/directadmin",
"authors": [
{
"name": "Niels Keurentjes",
"email": "niels.keurentjes@omines.com",
"homepage": "https://www.omines.nl/"
}
],
"support": {
"issues": "https://github.com/omines/directadmin/issues"
},
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.2",
"guzzlehttp/psr7": "^2.0"
},
"autoload": {
"psr-4": {
"Omines\\DirectAdmin\\": "src/DirectAdmin/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}