-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
46 lines (46 loc) · 1018 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
44
45
46
{
"name": "phpmetrics/design-pattern-detector",
"description": "Design patterns detector",
"license": "MIT",
"keywords": [
"quality",
"analysis",
"testing",
"qa",
"design pattern"
],
"authors": [
{
"name": "Jean-François Lépine",
"email": "lepinejeanfrancois@yahoo.fr",
"homepage": "http://www.lepine.pro",
"role": "Copyright Holder"
}
],
"homepage": "http://www.phpmetrics.org",
"support": {
"issues": "https://github.com/PhpMetrics/DesignPatternDetector/issues"
},
"autoload": {
"psr-4": {
"Hal\\": "./src/Hal/"
}
},
"require": {
"php": ">=5.4",
"halleck45/phpmetrics": ">=1.8.2",
"symfony/console": "~2.5",
"symfony/config": "~2.4",
"symfony/yaml": "~2.4",
"ext-dom": "*",
"symfony/expression-language": "^3.1@dev",
"symfony/property-access": "^3.1@dev"
},
"require-dev": {
"phpunit/phpunit": "~4.1"
},
"minimum-stability": "dev",
"bin": [
"bin/design-pattern"
]
}