forked from phpDocumentor/phpDocumentor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (58 loc) · 2 KB
/
Copy pathcomposer.json
File metadata and controls
61 lines (58 loc) · 2 KB
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
59
60
61
{
"name": "phpdocumentor/phpdocumentor",
"description": "Documentation Generator for PHP",
"keywords": ["documentation", "api", "dga", "application", "phpdoc"],
"homepage": "http://www.phpdoc.org",
"license": "MIT",
"autoload": {
"psr-0": { "phpDocumentor": ["src/" ] }
},
"autoload-dev": {
"psr-0": { "phpDocumentor": ["tests/unit/"] }
},
"require": {
"php": ">=5.5",
"symfony/console": "^2.3",
"twig/twig": "^1.3",
"erusev/parsedown": "^1.0",
"jms/serializer": "~0.12",
"desarrolla2/cache": "^1.8",
"symfony/event-dispatcher": "^2.1",
"phpdocumentor/graphviz": "^1.0",
"phpdocumentor/fileset": "^1.0",
"phpdocumentor/reflection": "dev-develop@dev",
"phpdocumentor/reflection-common": "^1.0@dev",
"phpdocumentor/reflection-docblock": "^3.0@dev",
"tedivm/stash": "^0.12.3",
"league/tactician": "^0.6.0",
"webmozart/assert": "^1.0",
"league/flysystem": "~1.0",
"php-di/php-di": "^5.0",
"league/event": "^2.1",
"symfony/validator": "^2.7"
},
"minimum-stability": "stable",
"require-dev": {
"behat/behat": "^3.0",
"phpunit/phpunit": "^4.0",
"mockery/mockery": "~0.9@dev",
"mikey179/vfsStream": "^1.2",
"squizlabs/php_codesniffer": "^1.4",
"symfony/expression-language": "^2.4",
"symfony/process": "^2.3",
"herrera-io/phar-update": "^2.0"
},
"suggest": {
"ext-twig": "Enabling the twig extension improves the generation of twig based templates.",
"ext-xslcache": "Enabling the XSLCache extension improves the generation of xml based templates."
},
"config": {
"bin-dir":"bin/"
},
"bin": ["bin/phpdoc.php", "bin/phpdoc"],
"extra": {
"branch-alias": {
"dev-develop": "3.0-dev"
}
}
}