-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1011 Bytes
/
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
{
"name": "ricwein/directory-index",
"description": "Fancy Directory Index Page",
"type": "project",
"authors": [
{
"name": "Richard Weinhold",
"email": "[email protected]"
}
],
"keywords": [
"directory",
"index"
],
"license": "MIT",
"require": {
"php": ">=7.4.0",
"ext-json": "*",
"ext-mbstring": "*",
"monolog/monolog": "^2.0",
"phpfastcache/phpfastcache": "^7.1",
"scssphp/scssphp": "^1.0",
"nikic/fast-route": "^1.3",
"ricwein/filesystem": "^2.0",
"ricwein/templater": "^2.0.5",
"matthiasmullie/minify": "^1.3",
"league/commonmark": "^1.4",
"symfony/console": "^5.0",
"intervention/image": "^2.5",
"daverandom/resume": "^0.0.3"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^9.0",
"overtrue/phplint": "^1.2"
},
"config": {
"platform": {
"php": "7.4.0"
}
},
"autoload": {
"psr-4": {
"ricwein\\Indexer\\": "src"
}
}
}