-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 997 Bytes
/
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
{
"name": "titon/type",
"type": "library",
"description": "The type package provides a chainable immutable object oriented interface for array lists, hash maps, string buffers, xml documents, and more.",
"keywords": ["titon", "type", "array", "list", "hash", "map", "buffer", "xml"],
"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/type"
},
"require": {
"hhvm": ">=3.6.0",
"ext-mbstring": "*",
"titon/common": "*",
"titon/utility": "*"
},
"suggest": {
"ext-simplexml": "Read and Write XML files using the Type\\Xml classes"
},
"autoload": {
"psr-4": {
"Titon\\Type\\": ""
},
"files": [
"bootstrap.hh"
]
}
}