forked from thecodingmachine/mvc.splash-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.38 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
{
"name" : "mouf/mvc.splash-common",
"description" : "The Core part of Splash (an MVC framework). It is used by Splash itself, but also by Drusplash (the Splash wrapper for Drupal)",
"type" : "mouf-library",
"authors" : [{
"name" : "David Négrier",
"email" : "[email protected]",
"homepage" : "http://mouf-php.com"
}
],
"keywords" : [
"mvc",
"framework",
"mouf",
"splash",
"splash-common"
],
"homepage" : "https://github.com/thecodingmachine/mvc.splash-common",
"license" : [
"MIT"
],
"require" : {
"mouf/mouf" : ">=2.0.2, <3.0",
"php" : ">=5.3.0",
"mouf/utils.cache.apc-cache" : "~2.1",
"mouf/utils.cache.file-cache" : "~2.1",
"mouf/utils.common.validators" : "3.*",
"mouf/html.htmlelement" : "2.*",
"mouf/utils.i18n.fine" : "3.*",
"mouf/utils.action.common-action" : "~1.0",
"mouf/utils.common.url-interface" : "~1.0",
"mouf/html.renderer.twig-extensions": "~1.0",
"mouf/mvc.splash-implementation": "~5.0",
"symfony/http-kernel" : "~2.0",
"mouf/utils.common.conditioninterface": "~2.0",
"mouf/utils.cache.cache-interface": "~2.0"
},
"autoload" : {
"psr-0" : {
"Mouf\\Annotations" : "src/",
"Mouf\\Mvc\\Splash" : "src/"
}
},
"extra" : {
"mouf" : {
"install" : [{
"file" : "src/splashCommonInstall.php",
"type" : "file"
}
],
"require-admin" : [
"src/SplashCommonAdmin.php"
]
}
}
}