-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
35 lines (34 loc) · 1022 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": "ohanzee/helpers",
"description": "Collection of helpers, small static classes for general purpose use",
"homepage": "http://ohanzee.org/component/helpers",
"license": "BSD-2-Clause",
"keywords": ["kohana", "ohanzee", "components", "helpers"],
"authors": [
{
"name": "Kohana/Ohanzee Team",
"email": "[email protected]",
"homepage": "http://ohanzee.org"
},
{
"name": "Ohanzee Contributors",
"homepage": "http://github.com/kohana/ohanzee-helpers/contributors"
}
],
"support": {
"source": "http://github.com/kohana/ohanzee-helpers",
"issues": "http://github.com/kohana/ohanzee-helpers/issues",
"irc": "irc://irc.freenode.net/kohana"
},
"autoload": {
"psr-4": {
"Ohanzee\\Helper\\": "src/"
}
},
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"codeception/codeception": "1.8.*@dev"
}
}