-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (31 loc) · 946 Bytes
/
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
{
"name": "mxc-commons/mxc-routes",
"description": "Zend Framework 2 Module that provides a new route to generate child route structures automatically according to a template configuration you provide.",
"type": "library",
"keywords": [
"module",
"zf2"
],
"license": "BSD-3-Clause",
"homepage": "http://www.github.com/mxc-commons/MxcRoutes/",
"authors": [
{
"name": "Frank Hein",
"email": "[email protected]",
"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"
},
"autoload": {
"psr-0": {
"MxcRoutes\\": "src/"
}
}
}