forked from phpDocumentor/phpDocumentor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
117 lines (117 loc) · 3.61 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
117
{
"name": "phpdocumentor/phpdocumentor",
"description": "Documentation Generator for PHP",
"keywords": ["documentation", "api", "dga", "application", "phpdoc"],
"homepage": "http://www.phpdoc.org",
"license": "MIT",
"autoload": {
"psr-4": {
"phpDocumentor\\": [ "src/phpDocumentor/" ]
}
},
"autoload-dev": {
"psr-4": {
"phpDocumentor\\": [
"tests/unit/phpDocumentor/",
"tests/integration/phpDocumentor/"
],
"phpDocumentor\\Behat\\Contexts\\": [
"tests/features/bootstrap"
]
}
},
"require": {
"php": ">=7.2.5",
"ext-ctype": "*",
"ext-dom": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"ext-zlib": "*",
"doctrine/event-manager": "^1.1",
"doctrine/rst-parser": "dev-master@dev",
"erusev/parsedown": "~1.0",
"jawira/plantuml": "^1.27",
"jean85/pretty-package-versions": "^1.2",
"league/flysystem": "^1.0",
"league/pipeline": "^1.0",
"league/uri": "^6.0",
"league/uri-interfaces": "^2.0",
"ocramius/package-versions": "^1.4",
"padraic/phar-updater": "^1.0",
"phpdocumentor/flyfinder": "^1.0@beta",
"phpdocumentor/graphviz": "^2.0@dev",
"phpdocumentor/reflection": "^4.0@beta",
"phpdocumentor/reflection-common": "^2.0@alpha",
"phpdocumentor/reflection-docblock": "^5.0@alpha",
"phpdocumentor/type-resolver": "^1.0",
"psr/cache": "^1.0",
"psr/log": "^1.1",
"scrivo/highlight.php": "^9.17",
"symfony/cache": "^5.0",
"symfony/config": "^5.0",
"symfony/console": "^5.0",
"symfony/contracts": "^2.0",
"symfony/dependency-injection": "^5.0",
"symfony/dom-crawler": "5.0.*",
"symfony/dotenv": "^5.0",
"symfony/event-dispatcher": "^5.0",
"symfony/expression-language": "^5.0",
"symfony/filesystem": "^5.0",
"symfony/finder": "5.0.*",
"symfony/flex": "^1.3.1",
"symfony/framework-bundle": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/monolog-bundle": "^3.0",
"symfony/process": "5.0.*",
"symfony/routing": "^5.0",
"symfony/stopwatch": "^5.0",
"symfony/string": "5.0.*",
"symfony/yaml": "^5.0",
"twig/twig": "~2.0",
"webmozart/assert": "^1.3"
},
"minimum-stability": "stable",
"require-dev": {
"mikey179/vfsstream": "^1.2",
"mockery/mockery": "^1.0",
"fzaninotto/faker": "^1.9"
},
"suggest": {
"ext-twig": "Enabling the twig extension improves the generation of twig based templates.",
"ext-ctype": "For best performance"
},
"config": {
"bin-dir":"bin/",
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"platform": {
"php": "7.2.5"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"bin": ["bin/phpdoc.php", "bin/phpdoc"],
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
},
"symfony": {
"id": "01C32VS9393M1CP9R8TEJMH62G",
"allow-contrib": false,
"require": "5.0.*"
}
}
}