-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.25 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.25 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
46
47
48
{
"name": "liquidrazor/file-locator",
"description": "Minimal filesystem discovery component for LiquidRazor.",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"filesystem",
"file-discovery",
"file-locator",
"dependency-injection",
"di-registry"
],
"homepage": "https://github.com/LiquidRazor/FileLocator",
"authors": [
{
"name": "Dan Radu Dragomir",
"homepage": "https://github.com/Noramarth",
"role": "Maintainer (Noramarth)"
}
],
"support": {
"issues": "https://github.com/LiquidRazor/FileLocator/issues",
"source": "https://github.com/LiquidRazor/FileLocator",
"docs": "https://github.com/LiquidRazor/FileLocator/blob/main/docs/README.md"
},
"require": {
"php": "^8.3",
"liquidrazor/config-loader": "^0.1.1"
},
"autoload": {
"psr-4": {
"LiquidRazor\\FileLocator\\": [
"include/",
"lib/",
"src/"
]
}
},
"autoload-dev": {
"psr-4": {
"LiquidRazor\\FileLocator\\Tests\\": "tests/"
}
},
"scripts": {
"test": "php tests/run.php"
}
}