-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
34 lines (34 loc) · 886 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
33
34
{
"name": "xelax90/zf2-language-route",
"description": "Adds language prefix to every route",
"license": "GPLv2",
"authors": [
{
"name": "Aleksandr",
"email": "[email protected]"
}
],
"extra" : {
"zf" : {
"module" : "ZF2LanguageRoute"
}
},
"autoload": {
"psr-4": {
"ZF2LanguageRoute\\": "src/"
}
},
"require": {
"zendframework/zend-mvc" : "^2.7.10 || ^3.0.1",
"zendframework/zend-servicemanager": "^3.1",
"zendframework/zend-eventmanager": "^3.0.1",
"zendframework/zend-modulemanager": "^2.7.2",
"zendframework/zend-mvc-i18n": "^1.0"
},
"require-dev" : {
"zf-commons/zfc-user" : "2.x-dev"
},
"suggest" : {
"zf-commons/zfc-user" : "User authentication. You can use the provided interface to store a perosnal locale inside the user entity"
}
}