forked from phpDocumentor/phpDocumentor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (50 loc) · 1.69 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
{
"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/"]
}
},
"repositories":[
{ "type":"composer", "url":"http://packages.zendframework.com"}
],
"require": {
"php": ">=5.3.3",
"cilex/cilex": "dev-master",
"dflydev/markdown": "1.0.*",
"nikic/php-parser": "dev-master",
"symfony/event-dispatcher": "2.1.*@stable",
"zendframework/zend-stdlib": "2.*",
"zendframework/zend-config": "2.*",
"zendframework/zend-servicemanager": "2.*",
"zendframework/zend-i18n": "2.*",
"phpdocumentor/graphviz": "1.*@beta",
"phpdocumentor/fileset": "1.0.0-beta2",
"phpdocumentor/reflection": "0.1.*",
"phpdocumentor/reflection-docblock": "2.0.0a1",
"phpdocumentor/plugin-twig":"1.*",
"phpdocumentor/unified-asset-installer": "1.*@beta",
"phpdocumentor/template-responsive": "1.*",
"phpdocumentor/template-new-black": "1.*",
"phpdocumentor/template-zend": "1.*",
"phpdocumentor/template-old-ocean": "1.*",
"phpdocumentor/template-checkstyle": "1.*"
},
"suggests": {
"ext-xsl": "to use the XSL based templates"
},
"minimum-stability": "dev",
"require-dev": {
"behat/behat": ">=2.4@stable",
"phpunit/phpunit": "3.7.*@stable",
"mockery/mockery": ">=0.7.0@stable"
},
"config": {
"bin-dir":"bin/"
},
"bin": ["bin/phpdoc.php"]
}