-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.17 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
{
"name": "titon/utility",
"type": "library",
"description": "The utility package provides convenience classes for basic tasks like validation, formatting, sanitization and more.",
"keywords": [
"titon", "utility", "collection", "config", "crypt", "format", "inflector",
"number", "path", "registry", "sanitize", "string", "time", "validate"
],
"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/utility"
},
"require": {
"hhvm": ">=3.6.0",
"ext-mbstring": "*"
},
"suggest": {
"ext-fileinfo": "Validate file mime types with the Utility\\Validate class",
"titon/common": "Convert from maps, arrays, and vectors using the Common package",
"titon/io": "Load configuration files using an Io\\Reader class"
},
"autoload": {
"psr-4": {
"Titon\\Utility\\": ""
},
"files": [
"bootstrap.hh"
]
}
}