-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.37 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
{
"name": "ethna/ethna-cli",
"description": "web application framework.",
"type": "library",
"keywords": [ "framework", "ethna" ],
"license": "BSD-3-Clause",
"homepage": "https://github.com/ethna/ethna",
"authors": [
{ "name": "Masaki Fujimoto", "email": "[email protected]", "role" : "Administrator"},
{ "name": "chobie", "email": "[email protected]", "role" : "Developer"},
{ "name": "withgod", "email": "[email protected]", "role" : "Developer"},
{ "name": "sotarok", "homepage": "https://github.com/sotarok", "role" : "Developer"},
{ "name": "ethna contributors", "homepage": "https://github.com/ethna/ethna/blob/master/AUTHORS" }
],
"support" : {
"issues": "https://github.com/ethna/ethna/issues"
},
"bin": [ "bin/ethna"],
"require": {
"php": ">=5.3.3",
"symfony/console": "~2.1",
"symfony/event-dispatcher": "~2.1"
},
"require-dev": {
"ethna/ethna-i18n": "2.7.*@dev",
"ethna/ethna-urlhandler": "2.7.*@dev",
"ethna/ethna-db": "2.7.*@dev",
"ethna/ethna-generator": "2.7.*@dev",
"ethna/ethna-soap": "2.7.*@dev",
"ethna/ethna": "2.7.*@dev"
},
"autoload": {
"psr-0": {
"Ethna": "class"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.7.x-dev"
}
}
}