-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 1014 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 1014 Bytes
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": "bushbaby/bsb-localized-template-path-stack",
"description": "BsbLocalizedTemplatePathStack is a small ZF2 module that provides a template stack resolver which resolves to templates based on the current locale.",
"type": "library",
"keywords": ["zf2", "i18n", "module", "template"],
"homepage": "https://github.com/bushbaby/BsbLocalizedTemplatePathStack",
"license": "MIT",
"authors": [
{
"name": "Bas Kamer",
"homepage": "http://bushbaby.nl"
}
],
"minimum-stability" : "dev",
"require": {
"php": ">=5.3.3",
"ext-intl" : "*",
"zendframework/zend-mvc": ">=2.2.2",
"zendframework/zend-servicemanager": ">=2.2.2",
"zendframework/zend-view": ">=2.2.2"
},
"require-dev": {
"phpunit/phpunit": "3.8.*"
},
"autoload": {
"psr-0": {
"BsbLocalizedTemplatePathStack": "src/"
},
"classmap": [
"./Module.php"
]
}
}