-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·111 lines (111 loc) · 2.54 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name" : "keeko/admin",
"description" : "Admin module",
"type" : "keeko-module",
"license" : "MIT",
"authors" : [{
"name" : "gossi"
}
],
"autoload" : {
"psr-4" : {
"keeko\\admin\\" : "src/"
}
},
"require" : {
"php" : ">=5.4",
"keeko/composer-installer" : "*"
},
"require-dev" : {
"keeko/framework" : "dev-master",
"keeko/core" : "@dev",
"propel/propel" : "@alpha",
"puli/repository" : "@beta",
"puli/composer-plugin" : "@beta",
"puli/twig-extension" : "@beta",
"puli/url-generator" : "@beta",
"puli/discovery" : "@beta"
},
"extra" : {
"keeko" : {
"module" : {
"title" : "Keeko Admin",
"class" : "keeko\\admin\\AdminModule",
"extensions" : {
"keeko.admin.menu" : [{
"id" : "keeko.admin.users_groups",
"icon" : "users",
"label" : "users_groups",
"domain" : "keeko.admin"
}, {
"id" : "keeko.admin.users",
"parent" : "keeko.admin.users_groups",
"icon" : "user",
"label" : "users",
"domain" : "keeko.admin",
"module" : "keeko/admin",
"action" : "users"
}, {
"id" : "keeko.admin.groups",
"parent" : "keeko.admin.users_groups",
"icon" : "users",
"label" : "groups",
"domain" : "keeko.admin",
"module" : "keeko/admin",
"action" : "groups"
}, {
"id" : "keeko.admin.settings",
"icon" : "cog",
"label" : "settings",
"domain" : "keeko.admin",
"module" : "keeko/admin",
"action" : "settings"
}
]
},
"actions" : {
"dashboard" : {
"title" : "Dashboard",
"class" : "keeko\\admin\\action\\DashboardAction",
"acl" : [
"admin"
],
"responder" : {
"html" : "keeko\\admin\\responder\\html\\DashboardHtmlResponder"
}
},
"users" : {
"title" : "User admin",
"class" : "keeko\\admin\\action\\UsersAction",
"acl" : [
"admin"
],
"responder" : {
"html" : "keeko\\admin\\responder\\html\\UsersHtmlResponder"
}
},
"groups" : {
"title" : "Group admin",
"class" : "keeko\\admin\\action\\GroupsAction",
"acl" : [
"admin"
],
"responder" : {
"html" : "keeko\\admin\\responder\\html\\GroupsHtmlResponder"
}
},
"settings" : {
"title" : "Settings",
"class" : "keeko\\admin\\action\\SettingsAction",
"acl" : [
"admin"
],
"responder" : {
"html" : "keeko\\admin\\responder\\html\\SettingsHtmlResponder"
}
}
}
}
}
}
}