-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 1.18 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
{
"name": "rodrigorm/audit",
"description": "Uses xdebug function trace to generate code execution reports.",
"version": "0.0.1",
"keywords": ["trace", "profiler", "audit", "tests"],
"homepage": "https://github.com/rodrigorm/audit",
"license": "GPL-3.0+",
"authors": [
{
"name": "Rodrigo Moyle",
"email": "rodrigorm@gmail.com",
"homepage": "https://github.com/rodrigorm",
"role": "Developer"
}
],
"support": {
"email": "rodrigorm@gmail.com",
"issues": "https://github.com/rodrigorm/audit/issues"
},
"require": {
"ext-xdebug": "2.*",
"alom/graphviz": "*"
},
"require-dev": {
"phploc/phploc": "*",
"pdepend/pdepend": "*",
"phpmd/phpmd": "*",
"squizlabs/php_codesniffer": "1.*",
"sebastian/phpcpd": "*",
"phpunit/phpunit": "4.1.*",
"codeclimate/php-test-reporter": "dev-master"
},
"autoload": {
"psr-4": {
"RodrigoRM\\Audit\\": "src/Audit/"
}
},
"autoload-dev": {
"psr-4": {
"RodrigoRM\\Audit\\Test\\": "tests/Audit/Test/"
}
}
}