-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
57 lines (57 loc) · 1.6 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "soarce/client",
"description": "This is the client for SOARCE providing and endpoint for external code coverage collection and more.",
"keywords": ["SOARCE", "CodeCoverage", "QA", "Testing", "xdebug"],
"homepage": "https://github.com/soarce-qa/soarce-client-php",
"type" : "library",
"license": "MIT",
"authors": [
{
"name": "Holger Segnitz",
"email": "[email protected]",
"homepage": "https://www.segnitz.net/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/soarce-qa/soarce-client-php/issues",
"forum": "https://github.com/soarce-qa/soarce-client-php/issues",
"wiki": "https://github.com/soarce-qa/soarce-client-php/wiki",
"source": "https://github.com/soarce-qa/soarce-client-php",
"docs": "https://github.com/soarce-qa/soarce-client-php/wiki"
},
"config": {
"platform": {
"php": "7.1.30"
}
},
"require": {
"php": ">=7.1,<8.0-DEV",
"ext-json": "*",
"predis/predis": "^1.1",
"soarce/parallel-process-dispatcher": "^4.1"
},
"autoload": {
"files": ["src/execute.php"],
"psr-4": {
"Soarce\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"UnitTests\\": "tests/PhpUnit_UnitTests/"
}
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "*",
"jakub-onderka/php-parallel-lint": "^1.0",
"phploc/phploc": "*",
"pdepend/pdepend": "^2.5",
"phpmd/phpmd": "^2.6",
"squizlabs/php_codesniffer": "^3.4",
"sebastian/phpcpd": "^4.1",
"theseer/phpdox": "^0.12.0",
"m6web/redis-mock": "^4.6"
}
}