forked from phpDocumentor/phpDocumentor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (71 loc) · 2.72 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"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/", "tests/unit/"]
}
},
"require": {
"php": ">=5.3.3",
"cilex/cilex": "~1.0",
"symfony/validator": "~2.2",
"symfony/console": "~2.3",
"dompdf/dompdf": "~0.6",
"monolog/monolog": "~1.6",
"twig/twig": "~1.3",
"erusev/parsedown": "~0.7",
"symfony/process": "~2.0",
"zetacomponents/document": ">=1.3.1",
"symfony/event-dispatcher": "~2.1",
"symfony/stopwatch": "~2.3",
"symfony/config": "~2.3",
"jms/serializer": "~0.12",
"knplabs/knp-menu": "~1.1",
"zendframework/zend-stdlib": "2.1.*",
"zendframework/zend-servicemanager": "2.1.*",
"zendframework/zend-config": "2.1.*",
"zendframework/zend-i18n": "2.1.*",
"zendframework/zend-serializer": "2.1.*",
"zendframework/zend-cache": "2.1.*",
"zendframework/zend-filter": "2.1.*",
"phpdocumentor/graphviz": "~1.0",
"phpdocumentor/fileset": "~1.0",
"phpdocumentor/reflection": "~1.0",
"phpdocumentor/reflection-docblock": "~2.0",
"phpdocumentor/template-abstract": "~1.2",
"phpdocumentor/template-clean": "~1.0",
"phpdocumentor/template-responsive-twig": "~1.2",
"phpdocumentor/template-responsive": "~1.3",
"phpdocumentor/template-new-black": "~1.3",
"phpdocumentor/template-zend": "~1.3",
"phpdocumentor/template-old-ocean": "~1.3",
"phpdocumentor/template-checkstyle": "~1.2",
"phpdocumentor/template-xml": "~1.0"
},
"minimum-stability": "stable",
"require-dev": {
"behat/behat": "~2.4",
"phpunit/phpunit": "~3.7",
"mockery/mockery": ">=0.8.0",
"mikey179/vfsStream": "~1.2",
"squizlabs/php_codesniffer": "~1.4",
"symfony/expression-language": "~2.4"
},
"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"],
"extra": {
"branch-alias": {
"dev-develop": "2.5-dev"
}
}
}