-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 789 Bytes
/
Copy pathcomposer.json
File metadata and controls
38 lines (38 loc) · 789 Bytes
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
{
"name": "dikki/config",
"description": "Write and Parse Config Files in YAML, JSON, INI or PHP Array format",
"keywords": [
"config",
"yaml",
"json",
"ini",
"php",
"array",
"dotenv"
],
"license": "MIT",
"authors": [
{
"name": "Naman Kumar",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2",
"nette/neon": "^3.4",
"symfony/yaml": "7.0.*"
},
"require-dev": {
"nette/tester": "^2.5",
"phpstan/phpstan": "^1.12"
},
"autoload": {
"psr-4": {
"Dikki\\Config\\": "src/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
}
}