-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.22 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.22 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
{
"name": "liquidrazor/config-loader",
"description": "A lightweight, data-only configuration loading library for PHP 8.3+.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dan Radu Dragomir",
"homepage": "https://github.com/Noramarth",
"role": "Maintainer (Noramarth)"
}
],
"require": {
"php": "^8.3"
},
"require-dev": {
"phpunit/phpunit": "^12.5"
},
"autoload": {
"psr-4": {
"LiquidRazor\\ConfigLoader\\": "src/",
"LiquidRazor\\ConfigLoader\\Lib\\": "lib/",
"LiquidRazor\\ConfigLoader\\Contract\\": "include/Contract/",
"LiquidRazor\\ConfigLoader\\Enum\\": "include/Enum/",
"LiquidRazor\\ConfigLoader\\Exception\\": "include/Exception/",
"LiquidRazor\\ConfigLoader\\Value\\": "include/Value/"
}
},
"autoload-dev": {
"psr-4": {
"LiquidRazor\\ConfigLoader\\Tests\\": "tests/"
}
},
"support": {
"source": "https://github.com/LiquidRazor/ConfigLoader",
"issues": "https://github.com/LiquidRazor/ConfigLoader/issues"
},
"scripts": {
"test": "phpunit"
}
}