forked from code-lts/doctum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.62 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "code-lts/doctum",
"type": "application",
"description": "Doctum, a PHP API documentation generator. Fork of Sami",
"keywords": [
"phpdoc",
"generator"
],
"homepage": "https://github.com/code-lts/doctum",
"readme": "https://github.com/code-lts/doctum#readme",
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "[email protected]"
},
{
"name": "William Desportes",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1 || ^8.0",
"pimple/pimple": "~3.0",
"twig/twig": "~2.12",
"nikic/php-parser": "~4.6",
"michelf/php-markdown": "~1.3",
"symfony/console": "~3.4|~4.3|~5.1|~5.2",
"symfony/finder": "~3.4|~4.3|~5.1|~5.2",
"symfony/filesystem": "~3.4|~4.3|~5.1|~5.2",
"symfony/yaml": "~3.4|~4.3|~5.1|~5.2",
"symfony/process": "~3.4|~4.3|~5.1|~5.2",
"phpdocumentor/reflection-docblock": "~4.3|~5.2.1",
"wdes/php-i18n-l10n": "^2.0"
},
"scripts": {
"phpunit": "./vendor/bin/phpunit",
"phpstan": "./vendor/bin/phpstan analyse",
"phpcs": "./vendor/bin/phpcs",
"phpcbf": "./vendor/bin/phpcbf"
},
"require-dev": {
"phpunit/phpunit": "^7 || ^8 || ^9",
"phpstan/phpstan": "^0.12.30",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Doctum\\": "src/",
"Doctum\\Tests\\": "tests/"
}
},
"prefer-stable": true,
"bin": [
"bin/doctum.php"
]
}