forked from mi-schi/phpmd-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 955 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
42
43
{
"name": "mi-schi/phpmd-extension",
"description": "Contains extra phpmd rules from clean code book and the best practices of my experiences.",
"keywords": [
"phpmd",
"extension",
"clean code",
"rules",
"mess detection",
"best practices"
],
"homepage": "https://github.com/mi-schi/phpmd-extension",
"authors": [
{
"name": "Michael Schindler",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/mi-schi/phpmd-extension",
"issues": "https://github.com/mi-schi/phpmd-extension/issues"
},
"license": "MIT",
"require": {
"phpmd/phpmd": "^2.3"
},
"require-dev": {
"phpunit/phpunit": "^4.7",
"mockery/mockery": "@stable"
},
"autoload": {
"psr-4": {
"MS\\PHPMD\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MS\\PHPMD\\": "src/",
"MS\\PHPMD\\Tests\\": "tests/"
}
}
}