-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·41 lines (41 loc) · 1.5 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
{
"name": "titon/core",
"type": "library",
"description": "The core package is a combination of the common, type, and utility packages. These packages provide shared functionality, like type management, data handling, and inheritance.",
"keywords": [
"titon", "common", "traits", "interfaces", "abstract", "factory", "annotations", "bags", "types", "array", "list", "hash", "map", "buffer", "type",
"utility", "collection", "config", "crypt", "format", "inflector", "number", "path", "registry", "sanitize", "string", "time", "validate", "xml", "yaml"
],
"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/core"
},
"require": {
"hhvm": ">=3.4.0",
"ext-mbstring": "*"
},
"suggest": {
"ext-mcrypt": "Encrypt and decrypt data with the Utility\\Crypt class",
"ext-fileinfo": "Validate file mime types with the Utility\\Validate class",
"ext-simplexml": "Read and Write XML files using the Type\\Xml classes"
},
"autoload": {
"psr-0": {
"Titon\\Common": "src/",
"Titon\\Type": "src/",
"Titon\\Utility": "src/"
},
"files": [
"src/Titon/Common/bootstrap.hh",
"src/Titon/Utility/bootstrap.hh"
]
}
}