forked from phpDocumentor/phpDocumentor
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
116 lines (116 loc) · 3.75 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "phpdocumentor/phpdocumentor",
"description": "Documentation Generator for PHP",
"keywords": ["documentation", "api", "dga", "application", "phpdoc"],
"homepage": "http://www.phpdoc.org",
"license": "MIT",
"autoload": {
"psr-4": {
"Cilex\\" : [ "src/phpDocumentor/Application/CilexCompatibilityLayer" ],
"Pimple\\" : [ "src/phpDocumentor/Application/CilexCompatibilityLayer" ],
"phpDocumentor\\": [ "src/phpDocumentor/" ]
},
"files": [ "src/Kernel.php" ]
},
"autoload-dev": {
"psr-4": {
"phpDocumentor\\": [
"tests/unit/phpDocumentor/"
],
"phpDocumentor\\Behat\\Contexts\\": [
"tests/features/bootstrap"
]
}
},
"require": {
"php": ">=7.1.3",
"ext-iconv": "*",
"erusev/parsedown": "~1.0",
"jean85/pretty-package-versions": "^1.2",
"jms/serializer-bundle": "^2.3",
"league/pipeline": "^0.3.0",
"monolog/monolog": "~1.6",
"padraic/phar-updater": "^1.0",
"phpdocumentor/flyfinder": "1.*@beta",
"phpdocumentor/graphviz": "2.*@alpha",
"phpdocumentor/reflection": "4.*@alpha",
"phpdocumentor/reflection-common": "2.*@alpha",
"phpdocumentor/reflection-docblock": "5.*@alpha",
"phpdocumentor/type-resolver": "0.6.2",
"sensio/framework-extra-bundle": "^5.1",
"symfony/console": "^4.0",
"symfony/event-dispatcher": "^4.0",
"symfony/expression-language": "^4.0",
"symfony/flex": "^1.0",
"symfony/framework-bundle": "^4.0",
"symfony/lts": "^4@dev",
"symfony/monolog-bundle": "^3.1",
"symfony/process": "^4.0",
"symfony/proxy-manager-bridge": "^4.0",
"symfony/stopwatch": "^4.0",
"symfony/translation": "^4.0",
"symfony/var-dumper": "^4.0",
"symfony/yaml": "^4.0",
"tedivm/stash": "^0.14.2",
"twig/twig": "~1.3",
"zendframework/zend-cache": "~2.1",
"zendframework/zend-config": "~2.1",
"zendframework/zend-filter": "~2.1",
"zendframework/zend-i18n": "~2.1",
"zendframework/zend-serializer": "~2.1",
"zendframework/zend-servicemanager": "~2.1",
"zendframework/zend-stdlib": "~2.1",
"zetacomponents/document": ">=1.3.1"
},
"minimum-stability": "stable",
"require-dev": {
"behat/behat": "^3.0",
"mikey179/vfsStream": "^1.2",
"mockery/mockery": "^1.0",
"squizlabs/php_codesniffer": "^1.4",
"symfony/dotenv": "^4.0",
"webmozart/assert": "^1.3"
},
"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/",
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"replace": {
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"bin": ["bin/phpdoc.php", "bin/phpdoc"],
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"branch-alias": {
"dev-develop": "3.0-dev",
"dev-master": "2.9.x-dev"
},
"symfony": {
"id": "01C32VS9393M1CP9R8TEJMH62G",
"allow-contrib": false
}
}
}