This repository has been archived by the owner on Sep 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
70 lines (70 loc) · 2.31 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "titon/framework",
"type": "library",
"description": "Collection of packages that make up the Titon framework.",
"keywords": ["titon", "framework"],
"homepage": "http://titon.io",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Miles Johnson",
"homepage": "http://milesj.me",
"role": "Owner, Developer"
},
{
"name": "Alex Phillips",
"homepage": "http://wootables.com",
"role": "Developer"
}
],
"support": {
"irc": "irc://irc.freenode.org/titon",
"source": "https://github.com/titon/framework"
},
"require": {
"hhvm": ">=3.8.0",
"ext-mbstring": "*",
"ext-fileinfo": "*",
"psr/log": "~1.0",
"psr/http-message": "0.5"
},
"require-dev": {
"phpunit/phpunit": "~4.7",
"php-vfs/php-vfs": "~1.2"
},
"suggest": {
"ext-apc": "Cache data using APC",
"ext-redis": "Cache data using Redis",
"ext-memcached": "Cache data using Memcache",
"ext-openssl": "Encrypt and decrypt data using OpenSSL (suggested)",
"ext-mcrypt": "Encrypt and decrypt data using MCrypt (outdated)",
"ext-intl": "Localize messages using the Intl extension",
"ext-simplexml": "Read and write XML files",
"ext-yaml": "Read and write YAML files"
},
"autoload": {
"psr-4": { "Titon\\": "src/Titon/" },
"files": [
"src/Titon/Annotation/bootstrap.hh",
"src/Titon/Cache/bootstrap.hh",
"src/Titon/Common/bootstrap.hh",
"src/Titon/Context/bootstrap.hh",
"src/Titon/Controller/bootstrap.hh",
"src/Titon/Crypto/bootstrap.hh",
"src/Titon/Debug/bootstrap.hh",
"src/Titon/Environment/bootstrap.hh",
"src/Titon/Event/bootstrap.hh",
"src/Titon/Http/bootstrap.hh",
"src/Titon/Intl/bootstrap.hh",
"src/Titon/Io/bootstrap.hh",
"src/Titon/Route/bootstrap.hh",
"src/Titon/Type/bootstrap.hh",
"src/Titon/Utility/bootstrap.hh",
"src/Titon/Validate/bootstrap.hh",
"src/Titon/View/bootstrap.hh"
]
},
"autoload-dev": {
"psr-4": { "Titon\\": "tests/Titon/" }
}
}