forked from phpDocumentor/phpDocumentor
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
131 lines (131 loc) · 4.13 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "phpdocumentor/phpdocumentor",
"description": "Documentation Generator for PHP",
"keywords": ["documentation", "api", "dga", "application", "phpdoc"],
"homepage": "https://www.phpdoc.org",
"license": "MIT",
"autoload": {
"psr-4": {
"phpDocumentor\\": [ "src/phpDocumentor/" ]
}
},
"autoload-dev": {
"psr-4": {
"phpDocumentor\\JsonPath\\" : [
"incubator/json-path/tests/unit/"
],
"phpDocumentor\\": [
"tests/unit/phpDocumentor/",
"tests/integration/phpDocumentor/",
"tests/functional/phpDocumentor/"
],
"Prophecy\\" : [
"tests/unit/Prophecy"
]
}
},
"repositories": [
{ "type": "path", "url": "incubator/guides" },
{ "type": "path", "url": "incubator/guides-restructured-text" },
{ "type": "path", "url": "incubator/guides-markdown" },
{ "type": "path", "url": "incubator/json-path" }
],
"require": {
"php": "^7.4.0||^8.0",
"ext-ctype": "*",
"ext-hash": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-simplexml": "*",
"ext-xml": "*",
"jawira/plantuml": "^1.27",
"jean85/pretty-package-versions": "^1.5 || ^2.0.1",
"league/commonmark": "^2.2",
"league/flysystem": "^1.0",
"league/pipeline": "^1.0",
"league/tactician": "^1.0",
"league/tactician-bundle": "^1.2",
"league/uri": "~6.5.0",
"league/uri-interfaces": "^2.0",
"nikic/php-parser": "^4.14",
"phpdocumentor/flyfinder": "^1.0",
"phpdocumentor/graphviz": "^2.0",
"phpdocumentor/guides": "*@dev",
"phpdocumentor/guides-markdown": "*@dev",
"phpdocumentor/guides-restructured-text": "*@dev",
"phpdocumentor/json-path": "*@dev",
"phpdocumentor/reflection": "^5.3",
"phpdocumentor/reflection-common": "^2.0",
"phpdocumentor/reflection-docblock": "^5.3",
"phpdocumentor/type-resolver": "^1.6",
"psr/cache": "^1.0",
"psr/log": "^1.1",
"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.4.*",
"symfony/dotenv": "^5.0",
"symfony/event-dispatcher": "^5.0",
"symfony/expression-language": "^5.0",
"symfony/filesystem": "^5.0",
"symfony/finder": "5.4.*",
"symfony/flex": "^1.17",
"symfony/framework-bundle": "^5.0",
"symfony/http-foundation": "^5.0.7",
"symfony/http-kernel": "^5.0.8",
"symfony/monolog-bundle": "^3.0",
"symfony/polyfill-intl-idn": "^1.22",
"symfony/process": "5.4.*",
"symfony/routing": "^5.0",
"symfony/stopwatch": "^5.0",
"symfony/string": "5.4.*",
"symfony/yaml": "^5.0",
"twig/twig": "~2.0",
"webmozart/assert": "^1.3"
},
"minimum-stability": "stable",
"require-dev": {
"fzaninotto/faker": "^1.9",
"mikey179/vfsstream": "^1.2",
"mockery/mockery": "^1.0",
"psalm/phar": "^4.17"
},
"config": {
"bin-dir":"bin/",
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"platform": {
"php": "7.4.0"
},
"allow-plugins": {
"symfony/flex": true
}
},
"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.4-dev"
},
"symfony": {
"id": "01C32VS9393M1CP9R8TEJMH62G",
"allow-contrib": false,
"require": "^5.0"
}
}
}