-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.27 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
{
"name": "phpdocumentor/guides",
"description": "Contains the core functionality from the phpDocumentor Guides.",
"type": "library",
"license": "MIT",
"homepage": "https://www.phpdoc.org",
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"phpDocumentor\\Guides\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"phpDocumentor\\Guides\\": [
"tests/unit/"
]
}
},
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-zlib": "*",
"doctrine/deprecations": "^1.1",
"league/flysystem": "^1.1",
"league/tactician": "^1.1",
"league/uri": "^7.5.1",
"phpdocumentor/flyfinder": "^1.1",
"psr/event-dispatcher": "^1.0",
"symfony/clock": "^6.4.8",
"symfony/html-sanitizer": "^6.4.8",
"symfony/http-client": "^6.4.9",
"symfony/string": "^6.4.9",
"symfony/translation-contracts": "^3.5.1",
"twig/twig": "~2.15 || ^3.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"psr/log": "^3.0.2"
},
"extra": {
"branch-alias": {
"dev-main": "2.x-dev"
}
}
}