-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 883 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
47
48
{
"name": "vantoozz/phpcdm",
"license": "MIT",
"type": "library",
"description": "PHP Code Density Meter (PHPCDM)",
"authors": [
{
"name": "Ivan Nikitin",
"email": "[email protected]"
}
],
"bin": [
"bin/phpcdm"
],
"require": {
"symfony/console": "^3.2|~4|~5",
"symfony/finder": "~3|~4|~5",
"symfony/event-dispatcher": "~3|~4|~5"
},
"require-dev": {
"mikey179/vfsstream": "~1.6"
},
"autoload": {
"psr-4": {
"Vantoozz\\PHPCDM\\": [
"src/"
]
}
},
"autoload-dev": {
"psr-4": {
"Vantoozz\\PHPCDM\\UnitTests\\": [
"tests/unit/"
],
"Vantoozz\\PHPCDM\\SystemTests\\": [
"tests/system/"
]
}
},
"scripts": {
"post-install-cmd": [
"bash .githooks/setup.sh"
],
"post-update-cmd": [
"bash .githooks/setup.sh"
]
}
}