-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.13 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.13 KB
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
{
"name": "phpdocumentor/dev-server",
"description": "A php development server with live reloading to preview your documentation",
"type": "project",
"license": "MIT",
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"phpDocumentor\\DevServer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"phpDocumentor\\DevServer\\": [
"tests/unit/"
]
}
},
"authors": [
{
"name": "jaapio",
"email": "jaap@phpdoc.org"
}
],
"require": {
"php": "^8.1",
"ext-inotify": "*",
"ext-pcntl": "*",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"phpdocumentor/filesystem": "^1.0",
"symfony/event-dispatcher": "^5.4 || ^6.3 || ^7.0 || ^8.0",
"symfony/routing": "^5.4 || ^6.3 || ^7.0 || ^8.0",
"cboden/ratchet": "0.4.x@dev",
"react/http": "^v1.11",
"react/socket": "^v1.16",
"league/mime-type-detection": "^1.16"
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
}
}