-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.71 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
58
59
60
61
{
"name": "jamesrezo/webhelper",
"description": "A Generic Httpd Configuration Helper",
"homepage": "https://github.com/JamesRezo/WebHelper",
"keywords": ["httpd", "configuration", "apache", "nginx", "webserver"],
"require": {
"php": ">=5.6.0",
"composer/semver": "^1.4",
"symfony/console": "^3.1",
"twig/twig": "^1.24",
"symfony/finder": "^3.1",
"symfony/process": "^3.1",
"webhelper/parser": "^0.5"
},
"require-dev": {
"jamesrezo/qatools": "^1.0"
},
"scripts": {
"post-install-cmd": "bin/post-install-cmd.sh",
"lint": "find src -name *.php -exec php -l {} \\;",
"loc": "phploc --count-tests --log-xml=build/phploc.xml src/ tests/",
"pmd": "phpmd src/ xml cleancode,codesize,controversial,design,naming,unusedcode --reportfile build/pmd.xml",
"duplicates": "phpcpd src/",
"cs": "phpcs",
"test": "phpunit",
"ci": [
"@lint",
"phpcs --report-full=php://output",
"phpmd src/ text cleancode,codesize,controversial,design,naming,unusedcode",
"@duplicates"
],
"dox": "phpdox",
"build": [
"@lint",
"@loc",
"@cs",
"@pmd",
"@duplicates",
"@test",
"@dox"
]
},
"autoload": {
"psr-4": {
"JamesRezo\\WebHelper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JamesRezo\\WebHelper\\Test\\": "tests/"
}
},
"bin": ["bin/wh"],
"license": "MIT",
"authors": [
{
"name": "James",
"email": "[email protected]"
}
]
}