-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
39 lines (39 loc) · 939 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": "mvdgeijn/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/mvdgeijn/directadmin",
"authors": [
{
"name": "Marc van de Geijn",
"email": "[email protected]",
"homepage": "https://www.bhosted.nl/"
}
],
"support": {
"issues": "https://github.com/mvdgeijn/directadmin/issues"
},
"require": {
"php": ">=8.0",
"guzzlehttp/guzzle": "^6.1|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^7.3",
"friendsofphp/php-cs-fixer": "^2.0",
"php-coveralls/php-coveralls": "^2.1"
},
"autoload": {
"psr-4": {
"Mvdgeijn\\DirectAdmin\\": "src/DirectAdmin/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}