-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 1.03 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
{
"name": "titon/view",
"type": "library",
"description": "The view package provides template helpers, lookup, and rendering through engines.",
"keywords": ["titon", "view", "helper", "engine", "template", "renderer", "locator"],
"homepage": "http://titon.io",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Miles Johnson",
"homepage": "http://milesj.me"
}
],
"support": {
"irc": "irc://irc.freenode.org/titon",
"source": "https://github.com/titon/view"
},
"require": {
"hhvm": ">=3.6.0",
"titon/event": "*",
"titon/utility": "*"
},
"suggest": {
"titon/cache": "Cache rendered templates using the Cache package",
"titon/model": "Generate model based forms using the Model package",
"titon/type": "Build breadcrumb trails using the Type package"
},
"autoload": {
"psr-4": {
"Titon\\View\\": ""
},
"files": [
"bootstrap.hh"
]
}
}