forked from plesk/api-php-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 915 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
40
41
{
"name": "emnlmn/plesk-php-api",
"description": "PHP object-oriented library for Plesk XML-RPC API",
"license": "Apache-2.0",
"authors": [
{
"name": "Alexei Yuzhakov",
"email": "[email protected]"
},
{
"name": "Emanuele Menon",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.6.0"
},
"require-dev": {
"phpunit/phpunit": "5.7.*",
"phpunit/php-invoker": "*",
"phpunit/dbunit": ">=1.2",
"sebastian/environment": "^2.0"
},
"config": {
"process-timeout": 0
},
"scripts": {
"test": "phpunit"
},
"autoload": {
"psr-4": {
"PleskX\\": "src/PleskX/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}