-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·93 lines (93 loc) · 1.98 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
{
"name" : "keeko/auth",
"description" : "Keeko auth module",
"type" : "keeko-module",
"license" : "MIT",
"authors" : [{
"name" : "Thomas Gossmann",
"homepage" : "http://gos.si"
}
],
"keywords" : [
"auth"
],
"autoload" : {
"psr-4" : {
"keeko\\auth\\" : "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 auth",
"class" : "keeko\\auth\\AuthModule",
"actions" : {
"login" : {
"title" : "Login",
"class" : "keeko\\auth\\action\\LoginAction",
"acl" : [
"guest"
],
"responder" : {
"json" : "keeko\\auth\\responder\\LoginJsonResponder"
}
},
"logout" : {
"title" : "Logout",
"class" : "keeko\\auth\\action\\LogoutAction",
"acl" : [
"user"
],
"responder" : {
"json" : "keeko\\auth\\responder\\LogoutJsonResponder"
}
},
"status" : {
"title" : "Session Status",
"class" : "keeko\\auth\\action\\StatusAction",
"acl" : [
"user"
],
"responder" : {
"json" : "keeko\\auth\\responder\\StatusJsonResponder"
}
},
"profile-read" : {
"title" : "Users Profile",
"class" : "keeko\\auth\\action\\ProfileReadAction",
"acl" : [
"user"
],
"responder" : {
"json" : "keeko\\auth\\responder\\ProfileReadJsonResponder"
}
},
"permissions" : {
"title" : "User Permissions",
"class" : "keeko\\auth\\action\\PermissionsAction",
"acl" : [
"user"
],
"responder" : {
"json" : "keeko\\auth\\responder\\PermissionsJsonResponder"
}
}
}
}
}
}
}