-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
37 lines (37 loc) · 904 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
{
"name": "hostingde/api-php",
"description": "PHP API for hosting.de",
"type": "project",
"keywords": [
"hosting.de",
"API"
],
"homepage": "https://www.hosting.de/",
"license": "BSD 2-Clause Simplified License",
"authors": [
{
"name": "hosting.de Dev Team",
"email": "[email protected]",
"homepage": "https://www.hosting.de/",
"role": "Developer"
}
],
"support": {
"docs": "https://github.com/hosting-de-labs/hostingde-api-php",
"email": "[email protected]",
"issues": "https://github.com/hosting-de-labs/hostingde-api-php/issues",
"source": "https://github.com/hosting-de-labs/hostingde-api-php"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.0",
"ext-curl": "*",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Hostingde\\API\\": "src/Hostingde/API/"
}
}
}