-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
37 lines (37 loc) · 919 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
{
"name": "phpdocumentor/reflection-common",
"keywords": ["phpdoc", "phpDocumentor", "reflection", "static analysis", "FQSEN"],
"homepage": "https://www.phpdoc.org",
"description": "Common reflection classes used by phpdocumentor to reflect the code structure",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Jaap van Otterdijk",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0"
},
"autoload" : {
"psr-4" : {
"phpDocumentor\\Reflection\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-2.x": "2.x-dev"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.8",
"vimeo/psalm": "^4.25"
},
"config": {
"platform": {
"php": "7.4.1"
}
}
}