forked from ApiGen/ApiGen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.15 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
{
"name": "apigen/apigen",
"description": "API documentation generator for PHP 5.3+",
"type": "library",
"keywords": ["documentation", "docblock", "phpdoc", "phpdocumentor", "generator", "api"],
"homepage": "http://apigen.org/",
"license": "BSD-3-Clause",
"authors": [
{
"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"
}
],
"support": {
"issues": "https://github.com/apigen/apigen/issues",
"forum": "https://groups.google.com/group/apigen",
"source": "https://github.com/apigen/apigen"
},
"require": {
"php": ">=5.3.0",
"ext-json": "*",
"ext-mbstring": "*",
"nette/nette": ">=2.0.6",
"dg/texy": ">=2.1.0",
"kukulich/fshl": ">=2.1.0",
"andrewsville/php-token-reflection": ">=1.3.1"
},
"suggest": {
"ext-bz2": "*",
"ext-phar": "*",
"ext-zip": "*",
"ext-zlib": "*"
},
"autoload": {
"psr-0": {
"ApiGen": "./"
}
},
"bin": [
"apigen.php"
],
"extra": {
"branch-alias": {
"dev-master": "2.8.0",
"dev-develop": "3.0.0-dev"
}
}
}