forked from phpDocumentor/Reflection
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 1.09 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
{
"name": "phpdocumentor/reflection",
"description": "Reflection library to do Static Analysis for PHP Projects",
"keywords": ["phpdoc", "phpDocumentor", "reflection", "static analysis"],
"homepage": "http://www.phpdoc.org",
"license": "MIT",
"autoload": {
"psr-4": {
"phpDocumentor\\": "src/phpDocumentor"
}
},
"autoload-dev": {
"psr-4": {
"phpDocumentor\\": [
"tests/integration/",
"tests/unit/phpDocumentor",
"tests/bench/"
]
}
},
"minimum-stability": "alpha",
"require": {
"php": ">=7.2",
"psr/log": "~1.0",
"nikic/php-parser": "^4.0",
"phpdocumentor/reflection-docblock": "^5",
"phpdocumentor/reflection-common": "^2.0",
"phpdocumentor/type-resolver": "^1.0",
"webmozart/assert": "^1.0"
},
"require-dev": {
"mockery/mockery": "~1.0",
"mikey179/vfsstream": "~1.2"
},
"extra": {
"branch-alias": {
"dev-develop": "4.0.x-dev"
}
}
}