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
|
{
"name": "lcharette/uf_configmanager",
"type": "userfrosting-sprinkle",
"description": "This Sprinkle provides a UI for core and custom site settings",
"keywords": ["UserFrosting", "Config", "Settings", "Admin Panel"],
"homepage": "https://github.com/lcharette/UF_ConfigManager",
"license" : "MIT",
"authors" : [
{
"name": "Louis Charette",
"homepage": "https://github.com/lcharette"
}
],
"require": {
"php": ">=5.6",
"lcharette/uf_formgenerator": "^2.2.10"
},
"autoload": {
"psr-4": {
"UserFrosting\\Sprinkle\\ConfigManager\\": "src/"
}
},
"extra": {
"installer-name": "ConfigManager"
}
}
|