This repository has been archived by the owner on Mar 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (62 loc) · 2.22 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
{
"name": "heidelpay/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/"],
"Cilex\\Provider": ["src/"]
}
},
"require": {
"php": ">=5.3.3",
"cilex/cilex": "~1.0",
"symfony/validator": "~2.2",
"symfony/console": "~2.3",
"monolog/monolog": "~1.6",
"twig/twig": "~1.3",
"erusev/parsedown": "~1.0",
"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",
"herrera-io/phar-update": "1.0.3",
"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": "^3.0",
"phpdocumentor/reflection-docblock": "~2.0"
},
"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"
},
"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": "2.9-dev"
}
}
}