forked from ApiGen/ApiGen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.53 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
58
{
"name": "apigen/apigen",
"description": "PHP source code API generator",
"keywords": ["documentation", "phpdoc", "generator", "api"],
"homepage": "http://apigen.org/",
"license": "MIT",
"authors": [
{ "name": "Tomáš Votruba", "homepage": "https://tomasvotruba.cz", "email": "tomas.vot@gmail.com" },
{ "name": "Jaroslav Hanslík", "homepage": "https://github.com/kukulich" },
{ "name": "Ondřej Nešpor", "homepage": "https://github.com/andrewsville" },
{ "name": "David Grudl", "homepage": "http://davidgrudl.com" }
],
"require": {
"php": ">=5.5",
"andrewsville/php-token-reflection": "^1.4",
"apigen/theme-bootstrap": "1.1.*",
"apigen/theme-default": "1.0.*",
"herrera-io/phar-update": "~2.0",
"kukulich/fshl": "~2.1",
"latte/latte": ">=2.3.0,<2.3.5",
"michelf/php-markdown": "~1.4",
"nette/bootstrap": "^2.3",
"nette/di": "^2.3",
"nette/neon": "^2.3",
"nette/reflection": "^2.3",
"symfony/console": "^2.7",
"symfony/event-dispatcher": "^2.7",
"symfony/options-resolver": "^2.7",
"symfony/yaml": "^2.7",
"tracy/tracy": "^2.3"
},
"require-dev": {
"mockery/mockery": "~0.9",
"herrera-io/box": "~1.6",
"squizlabs/php_codesniffer": "~2.0",
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": {
"ApiGen\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ApiGen\\Tests\\": "tests",
"ApiGen\\EventDispatcher\\Tests\\": "tests/EventDispatcher",
"ApiGen\\Parser\\Tests\\": "tests/Parser"
}
},
"bin": [
"bin/apigen"
],
"extra": {
"branch-alias": {
"dev-master": "4.2.0-dev"
}
}
}