-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.27 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
{
"name": "tonicforhealth/testrail-report-aggregator",
"description": "Tool to aggregation report from JUnit like format to TestRail run report.",
"license": "MIT",
"keywords": ["tonicforhealth", "testrail", "junit", "aggregation", "report"],
"authors": [
{
"name": "Dmitry Gopkalo",
"email": "drefixs@gmail.com"
}
],
"require": {
"php": ">=5.6.5",
"guzzlehttp/guzzle": "~6.2",
"php-http/guzzle6-adapter": "~1.0",
"php-http/message": "~1.2",
"php-http/discovery": "~0.8.0",
"puli/cli": "~1.0",
"php-http/plugins": "~1.0",
"danielgsims/php-collections": "~1.4",
"symfony/console": "^3.0",
"pimple/pimple": "^3.0",
"puli/composer-plugin":"dev-classmap as 1.0-beta10"
},
"require-dev": {
"phpunit/phpunit": "~5.3",
"php-http/mock-client": "~0.3.0"
},
"autoload": {
"psr-4": {
"TonicForHealth\\ReportAggregator\\": "src"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/thewilkybarkid/composer-plugin"
}
],
"config": {
"bin-dir": "bin"
},
"prefer-stable": true,
"minimum-stability": "dev"
}