-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
33 lines (33 loc) · 1 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
{
"name": "mxc-commons/mxc-layoutscheme",
"description": "Zend Framework 2 Module that allows to define layout schemes and apply custom layouts to routes, modules, controllers and actions.",
"type": "library",
"keywords": [
"module",
"zf2"
],
"license": "BSD-3-Clause",
"homepage": "http://www.github.com/mxc-commons/MxcLayoutScheme/",
"authors": [
{
"name": "Frank Hein",
"email": "frank.hein@maxence.de",
"homepage": "http://www.maxence.de/"
}
],
"require": {
"php": ">=5.3.3",
"zendframework/zend-mvc": ">=2.1",
"zendframework/zend-servicemanager": ">=2.1",
"zendframework/zend-eventmanager": ">=2.1",
"zendframework/zend-modulemanager": ">=2.1",
"zendframework/zend-stdlib": "~2.1",
"zendframework/zend-view": "~2.1",
"zendframework/zend-filter": "~2.1"
},
"autoload": {
"psr-0": {
"MxcLayoutScheme\\": "src/"
}
}
}