forked from phpDocumentor/phpDocumentor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (52 loc) · 2.16 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
{
"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.*@dev",
"symfony/validator": "~2.2@stable",
"monolog/monolog": "1.4.*@stable",
"twig/twig": "1.*@stable",
"dflydev/markdown": "1.0.*@stable",
"symfony/event-dispatcher": "~2.1@stable",
"jms/serializer": "0.12.*@dev",
"zendframework/zend-stdlib": "2.*@stable",
"zendframework/zend-servicemanager": "2.*@stable",
"zendframework/zend-config": "2.*@stable",
"zendframework/zend-i18n": "2.*@stable",
"zendframework/zend-serializer": "2.*@stable",
"zendframework/zend-cache": "2.*@stable",
"zendframework/zend-filter": "2.*@stable",
"phpdocumentor/graphviz": "1.*@beta",
"phpdocumentor/fileset": "1.*@beta",
"phpdocumentor/reflection": "0.1.*@stable",
"phpdocumentor/reflection-docblock": "2.*@dev",
"phpdocumentor/unified-asset-installer": "1.*@beta",
"phpdocumentor/template-responsive-twig": "1.*@stable",
"phpdocumentor/template-responsive": ">=1.1.0@stable",
"phpdocumentor/template-new-black": ">=1.1.0@stable",
"phpdocumentor/template-zend": ">=1.1.0@stable",
"phpdocumentor/template-old-ocean": ">=1.1.0@stable",
"phpdocumentor/template-checkstyle": "1.*@stable",
"phpdocumentor/template-xml": "1.0.*@stable"
},
"minimum-stability": "dev",
"require-dev": {
"behat/behat": ">=2.4@stable",
"phpunit/phpunit": "3.7.*@stable",
"mockery/mockery": ">=0.8.0",
"mikey179/vfsStream": "1.3.*@dev"
},
"config": {
"bin-dir":"bin/"
},
"bin": ["bin/phpdoc.php"]
}