-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
30 lines (30 loc) · 854 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
{
"name": "nilemin/php-http-virtualmin-api",
"description": "PHP implementation of Virtualmin's remote api",
"license": "MIT",
"support": {
"issues": "https://github.com/tsvetelintsonev/php-http-virtualmin-api/issues",
"source": "https://github.com/tsvetelintsonev/php-http-virtualmin-api"
},
"authors": [
{
"name": "Tsvetelin Tsonev",
"email": "tsvetelin.tsoneff.github@gmail.com"
}
],
"require": {
"php": ">=7.0",
"niletphp/dependency-container": ">=v1.0.0",
"niletphp/configuration": ">=v1.0.0",
"niletphp/file-system": ">=v1.0.0",
"guzzlehttp/guzzle" : "6.2.1"
},
"require-dev": {
"phpunit/phpunit": "~5.7"
},
"autoload": {
"psr-4": {
"Nilemin\\Virtualmin\\": "src/"
}
}
}