-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 1.04 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/route",
"type": "library",
"description": "The route package adds support for dynamic route handling and mapping.",
"keywords": ["titon", "route", "router", "map", "url", "filter", "grouping", "builder"],
"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/route"
},
"require": {
"hhvm": ">=3.6.0",
"titon/event": "*",
"titon/utility": "*"
},
"suggest": {
"titon/annotation": "Wire Route annotations using the Annotation package",
"titon/cache": "Cache route lookups using the Cache package",
"titon/context": "Utilize global route functions using the Context package"
},
"autoload": {
"psr-4": {
"Titon\\Route\\": ""
},
"files": [
"bootstrap.hh"
]
}
}