forked from zf1/zend-view
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
42 lines (42 loc) · 1.73 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
{
"name": "zf1s/zend-view",
"description": "Zend Framework 1 View package",
"keywords": ["framework", "zf1", "zend", "view"],
"homepage": "http://framework.zend.com/",
"license": "BSD-3-Clause",
"require": {
"php": ">=5.3.3",
"ext-reflection": "*",
"zf1s/zend-exception": "^1.15.5",
"zf1s/zend-loader": "^1.15.5",
"zf1s/zend-registry": "^1.15.5"
},
"autoload": {
"psr-0": {
"Zend_View": "library/"
}
},
"suggest": {
"zf1s/zend-controller": "Used in special situations or with special adapters",
"zf1s/zend-config": "Used in special situations or with special adapters",
"zf1s/zend-currency": "Used in special situations or with special adapters",
"zf1s/zend-json": "Used in special situations or with special adapters",
"zf1s/zend-layout": "Used in special situations or with special adapters",
"zf1s/zend-locale": "Used in special situations or with special adapters",
"zf1s/zend-filter": "Used in special situations or with special adapters",
"zf1s/zend-http": "Used in special situations or with special adapters",
"zf1s/zend-navigation": "Used in special situations or with special adapters",
"zf1s/zend-paginator": "Used in special situations or with special adapters",
"zf1s/zend-translate": "Used in special situations or with special adapters",
"zf1s/zend-uri": "Used in special situations or with special adapters",
"zf1s/zend-validate": "Used in special situations or with special adapters"
},
"replace": {
"zf1/zend-view": "^1.12"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}