forked from phpDocumentor/phpDocumentor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (63 loc) · 2.32 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
{
"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",
"monolog/monolog": "~1.6",
"twig/twig": "~1.3",
"erusev/parsedown": "~0.7",
"symfony/process": "~2.0",
"zetacomponents/document": "dev-master@dev",
"symfony/event-dispatcher": "~2.1",
"symfony/stopwatch": "~2.3",
"symfony/config": "~2.3",
"jms/serializer": "~0.12",
"zendframework/zend-stdlib": "2.*",
"zendframework/zend-servicemanager": "2.*",
"zendframework/zend-config": "2.*",
"zendframework/zend-i18n": "2.*",
"zendframework/zend-serializer": "2.*",
"zendframework/zend-cache": "2.*",
"zendframework/zend-filter": "2.*",
"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"
},
"config": {
"bin-dir":"bin/"
},
"bin": ["bin/phpdoc.php"],
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
}
}