forked from skillfish/zf3-smarty-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 832 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
{
"name": "skillfish/zf3-smarty-module",
"description": "Zend Framework 3 Module for integrating Smarty 3 as View Manager",
"type": "library",
"license": "MIT",
"keywords": [
"smarty",
"module",
"zf3"
],
"authors": [
{
"name": "Heiko Baumgärtner",
"email": "[email protected]"
}
],
"require": {
"php": ">5.4",
"smarty/smarty": "^3.1",
"zendframework/zend-stdlib": "^3.0",
"zendframework/zend-mvc": "^3.0",
"zendframework/zend-servicemanager": "^3.1",
"zendframework/zend-modulemanager": "^2.7"
},
"autoload": {
"psr-4": {
"Smarty\\": "src/"
}
}
}