forked from ZF-Commons/ZfcTwig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (35 loc) · 919 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
35
36
{
"name": "zf-commons/zfc-twig",
"description": "Zend Framework 2 Module that provides a Twig rendering strategy and extensions to render actions or trigger events from your templates",
"type": "library",
"keywords": [
"twig",
"module",
"zf2"
],
"homepage": "http://www.github.com/ZF-Commons/ZfcTwig/",
"authors": [
{
"name": "Kyle Spraggs",
"email": "[email protected]",
"homepage": "http://www.spiffyjr.me/"
},
{
"name": "Cosmin Harangus",
"email": "[email protected]",
"homepage": "http://www.zendexperts.com/"
}
],
"require": {
"php": ">=5.3.3",
"twig/twig": "~1.13"
},
"autoload": {
"psr-0": {
"ZfcTwig\\": "src/"
}
},
"require-dev": {
"zendframework/zend-view": "*"
}
}