-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
63 lines (63 loc) · 1.98 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
{
"name": "ethna/ethna-project",
"description": "Ethna project",
"license": "BSD-3-Clause",
"authors": [
{ "name": "chobie", "email": "[email protected]", "role" : "Developer"},
{ "name": "withgod", "email": "[email protected]", "role" : "Developer"},
{ "name": "ethna contributors", "homepage": "https://github.com/ethna/ethna/blob/master/AUTHORS" }
],
"repositories": [
{
"type": "package",
"package": {
"name": "smarty/smarty",
"version": "2.6.28",
"dist": { "url": "http://www.smarty.net/files/Smarty-2.6.28.zip", "type": "zip" }
}
},
{
"type": "package",
"package": {
"name": "smarty/smarty3",
"version": "3.1.16",
"dist": { "url": "http://www.smarty.net/files/Smarty-3.1.16.zip", "type": "zip" }
}
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.3",
"symfony/event-dispatcher": "v2.4.*",
"ethna/ethna-composer-handler": "2.7.*@dev",
"ethna/ethna-events": "2.7.*@dev",
"ethna/ethna-generator": "2.7.*@dev",
"ethna/ethna-cli": "2.7.*@dev",
"ethna/ethna-i18n": "2.7.*@dev",
"ethna/ethna-urlhandler": "2.7.*@dev",
"ethna/ethna": "2.7.*@dev",
"smarty/smarty": "2.6.*@dev"
},
"suggest": {
"ethna/ethna-soap": "add SOAP features",
"ethna/ethna-appobject": "add AppObject features",
"ethna/ethna-mailsender": "add mail sender features",
"twig/twig": "1.*",
"smarty/smarty3": "3.*"
},
"scripts": {
"post-install-cmd": [
"Ethna\\ComposerHandler\\ScriptHandler::buildProject"
]
},
"autoload": {
"psr-0" : {"Example" : "app/Example"},
"files" : ["vendor/smarty/smarty/libs/Smarty.class.php"]
},
"extra": {
"ethna-app-name": "example",
"branch-alias": {
"dev-master": "2.7.x-dev"
}
}
}