forked from thecodingmachine/integration.wordpress.moufpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.77 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
{
"name" : "mouf/integration.wordpress.moufpress",
"description" : "A MVC framework for Wordpress based on Mouf and compatible with Splash MVC",
"keywords" : [
"wordpress",
"mvc",
"splash",
"mouf"
],
"homepage" : "https://mouf-php.com/packages/mouf/integration.wordpress.moufpress",
"type" : "mouf-library",
"license" : "MIT",
"authors" : [{
"name" : "David Négrier",
"email" : "[email protected]",
"homepage" : "http://mouf-php.com"
}
],
"autoload" : {
"psr-4" : {
"Mouf\\Integration\\Wordpress\\Moufpress\\" : "src/Mouf/Integration/Wordpress/Moufpress/"
}
},
"require" : {
"php" : ">=5.3.0",
"mouf/mouf" : "~2.0",
"mouf/mvc.splash-common" : "~4.3",
"mouf/html.template.templateinterface" : "~2.1",
"mouf/security.rightsservice-splash" : "~4.0",
"mouf/integration.wordpress.moufpress-wordpressplugin" : "~1.0",
"mouf/javascript.jquery.jquery" : "~1.9",
"mouf/security.userservice-splash" : "~4.0",
"mouf/utils.cache.apc-cache" : "~2.1",
"mouf/utils.cache.file-cache" : "~2.1",
"mouf/utils.constants.secret" : "~1.0"
},
"provide" : {
"mouf/mvc.splash-implementation" : "4.3.*"
},
"extra" : {
"mouf" : {
"install" : [{
"type" : "class",
"class" : "Mouf\\Integration\\Wordpress\\Moufpress\\MoufpressInstaller"
}
],
"logo" : "logo.png",
"doc" : [{
"title" : "Writing controllers and views",
"url" : "doc/mvc.md"
}, {
"title" : "Scripts and styles",
"url" : "doc/scripts-and-styles.md"
}, {
"title" : "Widgets integration",
"url" : "doc/widgets.md"
}, {
"title" : "Authentication and authorization",
"url" : "doc/authentication_and_right_management.md"
}, {
"title" : "Troubleshooting",
"url" : "doc/troubleshooting.md"
}
]
}
}
}