-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 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
{
"name": "schematicon/doc-generator",
"type": "library",
"description": "Schematicon Doc Generator is generator for schematicon API specification.",
"keywords": ["doc", "generator", "api", "structure", "schematicon"],
"homepage": "https://github.com/schematicon/doc-generator",
"license": "MIT",
"authors": [
{ "name": "Schematicon Project", "homepage": "https://github.com/schematicon/doc-generator/graphs/contributors" }
],
"support": {
"issues": "https://github.com/schematicon/doc-generator/issues"
},
"require": {
"php": ">=7.0",
"latte/latte": "~2.4",
"nette/neon": "~2.4",
"nette/utils": "~2.4",
"schematicon/api-validator": "@dev",
"schematicon/collection-generator": "@dev",
"schematicon/validator": "@dev",
"symfony/console": "~3.1 || ~4.0",
"texy/texy": "~2.9",
"tracy/tracy": "~2.4"
},
"require-dev": {
},
"autoload": {
"psr-4": { "Schematicon\\DocGenerator\\": "src/" }
},
"bin": ["apidoc"],
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}