forked from phpDocumentor/guides
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (77 loc) · 2.74 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
{
"description": "Markup parsers and rendering packages, focused on documentation",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"config": {
"platform": {
"php": "8.1.0"
},
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"symfony/runtime": false
},
"sort-packages": true
},
"autoload-dev": {
"psr-4": {
"phpDocumentor\\Guides\\": ["packages/guides/tests/unit/", "tests/"],
"phpDocumentor\\Guides\\Cli\\": "packages/guides-cli/tests/unit",
"phpDocumentor\\Guides\\Graphs\\": "packages/guides-graphs/tests/unit",
"phpDocumentor\\Guides\\RestructuredText\\": "packages/guides-restructured-text/tests/unit",
"phpDocumentor\\Guides\\Markdown\\": "packages/guides-markdown/tests/unit"
}
},
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-mbstring": "*",
"doctrine/lexer": "^3.0",
"league/commonmark": "^2.4",
"league/flysystem": "^1.0.5",
"league/tactician": "^1.1",
"league/uri": "^6.5",
"league/uri-interfaces": "^2.3",
"phpdocumentor/flyfinder": "^1.1",
"phpdocumentor/guides": "@dev",
"phpdocumentor/guides-cli": "@dev",
"phpdocumentor/guides-graphs": "@dev",
"phpdocumentor/guides-restructured-text": "@dev",
"phpdocumentor/guides-theme-bootstrap": "@dev",
"psr/event-dispatcher": "^1.0",
"psr/log": "^2.0 || ^3.0",
"symfony/contracts": "^2.5 || ^3.0",
"symfony/http-client": "^5.4.25 || ^6.3",
"symfony/process": "^5.4 || ^6.3",
"symfony/string": "^5.4 || ^6.3",
"symfony/translation-contracts": "^2.1 || ^3.0",
"twig/twig": "~2.0 || ^3.0",
"webmozart/assert": "^1.10"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"doctrine/coding-standard": "^12.0",
"fakerphp/faker": "^1.23",
"fig/log-test": "^1.0",
"gajus/dindent": "^2.0.1",
"jangregor/phpstan-prophecy": "^1.0",
"league/flysystem-memory": "^1.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-webmozart-assert": "^1.2",
"phpunit/phpunit": "^10.2",
"psalm/plugin-phpunit": "^0.18.4",
"qossmic/deptrac-shim": "^1.0.2",
"rector/rector": "^0.17.2",
"squizlabs/php_codesniffer": "^3.7",
"symfony/finder": "^5.4 || ^6.3",
"vimeo/psalm": "^5.13"
},
"repositories": [
{
"url": "./packages/*",
"type": "path"
}
]
}