-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.29 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
{
"name": "titon/intl",
"type": "library",
"description": "The Intl package provides tools for the localization and internationalization of an application.",
"keywords": ["titon", "intl", "g11n", "globalization", "l10n", "localization", "i18n", "internationalization", "locale", "translate", "message", "resource", "bundle", "domain", "catalog"],
"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/intl"
},
"require": {
"hhvm": ">=3.6.0",
"ext-mbstring": "*",
"ext-intl": "*",
"titon/common": "*",
"titon/event": "*",
"titon/io": "*",
"titon/utility": "*"
},
"suggest": {
"titon/cache": "Cache message and locale lookups using the Cache package",
"titon/context": "Utilize global Intl functions using the Context package",
"titon/route": "Resolve locale based routes using the Route package"
},
"autoload": {
"psr-4": {
"Titon\\Intl\\": ""
},
"files": [
"src/Titon/Intl/bootstrap.hh"
]
}
}