This repository has been archived by the owner on Aug 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.83 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
{
"name": "cloak/cloak",
"keywords": [ "code coverage", "markdown report", "lcov report", "tree report", "text report", "php" ],
"description": "Modern code coverage analysis library",
"require": {
"php": ">=5.5.0",
"phpcollection/phpcollection": "~0.4",
"zendframework/zend-console": "~2.6",
"zendframework/zend-code": "~3.0",
"zendframework/zend-config": "~2.6",
"phpextra/event-manager": "~4.0.0",
"yosymfony/toml": "~0.3",
"eloquent/pathogen": "~0.6",
"cloak/cloak-analyzer": "~0.1"
},
"require-dev": {
"phpspec/prophecy": "~1.6",
"symfony/yaml": "~3.0",
"peridot-php/peridot": "~1.18",
"expect/peridot-expect-plugin": "~3.0",
"holyshared/peridot-temporary-plugin": "~1.0",
"codegyre/robo": "~0.7",
"cloak/robo-coveralls-kit": "~2.1",
"holyshared/robo-peridot": "~2.0",
"peridot-php/peridot-dot-reporter": "~1.0"
},
"autoload": {
"psr-4": { "cloak\\": "src/" }
},
"autoload-dev": {
"psr-4": {
"cloak\\spec\\result\\": "spec/fixtures/result",
"cloak\\spec\\reflection\\": "spec/fixtures/reflection",
"cloak\\spec\\collection\\": "spec/fixtures/collection",
"cloak\\spec\\reporter\\": "spec/fixtures/reporter"
},
"files": [
"spec/fixtures/src/foo.php"
]
},
"scripts": {
"test": "vendor/bin/robo spec:all",
"coverage": "vendor/bin/robo spec:coverage",
"coveralls": "vendor/bin/robo coveralls:upload",
"example": "vendor/bin/robo example:basic"
},
"license": "MIT",
"authors": [
{
"name": "holyshared",
"email": "holy.shared.design@gmail.com"
}
],
"minimum-stability": "stable",
"prefer-stable": true
}