-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
35 lines (35 loc) · 1.04 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
{
"name": "phpfui/instadoc",
"description": "Instant and always up to date documentation for PHP projects",
"minimum-stability": "stable",
"keywords": ["documentation", "phpdoc", "block", "doc", "docblock", "foundation", "generator", "document"],
"homepage": "https://github.com/phpfui/InstaDoc",
"license": "MIT",
"authors": [
{
"name": "Bruce Wells",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0 <8.5",
"phpfui/phpfui": "^6.0",
"phpdocumentor/reflection-docblock": "^5.0",
"gitonomy/gitlib": "^1.2",
"voku/simple_html_dom": "^4.7",
"soundasleep/html2text": "^2.0",
"scrivo/highlight.php": ">=v9.18",
"league/commonmark": "^2.4"
},
"autoload": {
"psr-4": {"PHPFUI\\InstaDoc\\": "src/PHPFUI/InstaDoc/"}
},
"require-dev": {
"phpunit/phpunit": "<12.0",
"phpfui/html-unit-tester": "^1.0",
"roave/security-advisories": "dev-latest",
"phpfui/phpunit-syntax-coverage": "^1.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.8"
}
}