-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.1 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.1 KB
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
{
"name": "voku/simple-php-code-parser",
"description": "Get a simple data structure from your php code.",
"type": "library",
"keywords": [
"php",
"parser",
"phpdoc"
],
"homepage": "https://github.com/voku/Simple-PHP-Code-Parser",
"license": "Apache-2.0",
"authors": [
{
"name": "Lars Moelleken",
"homepage": "https://www.moelleken.org/"
}
],
"require": {
"php": ">=8.1",
"phpdocumentor/type-resolver": "~1.7.2 || ~2.0",
"phpdocumentor/reflection-docblock": "~5.3 || ~6.0",
"phpdocumentor/reflection-common": "~2.2",
"phpstan/phpdoc-parser": "~2.0",
"voku/simple-cache": "~5.0",
"nikic/php-parser": "^4.18 || ^5",
"fidry/cpu-core-counter": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "~9.6 || ~11.0 || ~13.0",
"phpstan/phpstan": "^2.0"
},
"autoload": {
"psr-4": {
"voku\\": "src/voku/"
}
},
"autoload-dev": {
"psr-4": {
"voku\\tests\\": "tests/"
}
}
}