forked from kokspflanze/ZfcTwig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (49 loc) · 1.39 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "saadhre/zfc-twig",
"description": "Zend Framework Module that provides a Twig rendering strategy and extensions to render actions or trigger events from your templates",
"type": "library",
"keywords": [
"twig",
"module",
"zf"
],
"license": "BSD-3-Clause",
"homepage": "https://github.com/kokspflanze/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.5 || ^7.0",
"twig/twig": "^1.27"
},
"autoload": {
"psr-4": {
"ZfcTwig\\": "src/ZfcTwig"
}
},
"autoload-dev": {
"psr-4": {
"ZfcTwigTest\\": "tests/ZfcTwigTest"
}
},
"require-dev": {
"zendframework/zend-navigation": "^2.7",
"zendframework/zend-modulemanager": "^2.7",
"zendframework/zend-mvc": "^2.7 || ^3.0",
"zendframework/zend-servicemanager": "^2.7 || ^3.0",
"zendframework/zend-view": "^2.7",
"phpunit/phpunit": "^4.8 || ^5.6.2"
},
"suggest": {
"zendframework/zend-mvc-plugin-flashmessenger": "for zf3 support"
}
}