forked from phpDocumentor/guides
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.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
{
"name": "phpdocumentor/guides",
"description": "Markup parsers and rendering packages, focused on documentation",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"config": {
"platform": {
"php": "7.4.1"
}
},
"autoload": {
"psr-4": {
"phpDocumentor\\Guides\\": "packages/guides/src",
"phpDocumentor\\Guides\\RestructuredText\\": "packages/guides-restructured-text/src/RestructuredText",
"phpDocumentor\\Guides\\Markdown\\": "packages/guides-markdown/src/Markdown"
}
},
"autoload-dev": {
"psr-4": {
"phpDocumentor\\Guides\\": "packages/guides/tests/unit/",
"phpDocumentor\\Guides\\RestructuredText\\": "packages/guides-restructured-text/tests/unit",
"phpDocumentor\\Guides\\Markdown\\": "packages/guides-markdown/tests/unit"
}
},
"require": {
"php": "^7.4||^8.0",
"ext-mbstring": "*",
"league/flysystem": "^1.0",
"phpdocumentor/flyfinder": "^1.1",
"twig/twig": "~2.0",
"webmozart/assert": "^1.10",
"league/tactician": "^1.1",
"psr/event-dispatcher": "^1.0",
"symfony/string": "^5.4",
"symfony/translation-contracts": "^2.1",
"league/uri": "^6.5",
"league/uri-interfaces": "^2.3",
"psr/log": "^1.1",
"doctrine/event-manager": "^1.1",
"doctrine/lexer": "^1.2",
"league/commonmark": "^2.3"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.22",
"phpstan/phpstan": "^1.5",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan-webmozart-assert": "^1.1",
"fakerphp/faker": "^1.19"
}
}