-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
43 lines (43 loc) · 1017 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
{
"name": "voku/php-doc-fixer",
"description": "Try to fix php types in the documentation",
"type": "library",
"keywords": [
"php",
"phpdoc"
],
"homepage": "https://github.com/voku/php-doc-fixer",
"license": "Apache-2.0",
"authors": [
{
"name": "Lars Moelleken",
"homepage": "http://www.moelleken.org/"
}
],
"require": {
"php": ">=7.4",
"voku/simple-php-code-parser": "~0.16",
"voku/simple_html_dom": "~4.7",
"voku/portable-utf8": "~5.4",
"symfony/console": "~5.0",
"symfony/finder": "~5.0"
},
"require-dev": {
"phpunit/phpunit": "~9.0",
"jetbrains/phpstorm-stubs": "dev-master"
},
"autoload": {
"psr-4": {
"voku\\": "src/voku/"
}
},
"autoload-dev": {
"psr-4": {
"voku\\tests\\": "tests/"
}
},
"minimum-stability": "dev",
"bin": [
"bin/phpdocfixer"
]
}