forked from zikula/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
135 lines (120 loc) · 4.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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "zikula/core",
"homepage": "http://zikula.org/",
"license": "LGPL-3.0+",
"description": "Zikula Application Framework",
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-0": {
"Zikula\\": "src/lib",
"Zikula_": "src/lib/legacy",
"DoctrineExtensions\\StandardFields\\": "src/lib/legacy"
},
"psr-4": {
"Zikula\\": ["src/system", "src/themes"]
},
"classmap": [
"src/lib/util/",
"src/lib/i18n/",
"src/lib/legacy/dbobject",
"src/lib/legacy/util"
],
"files": [
"src/lib/i18n/ZGettextFunctions.php"
]
},
"authors": [
{
"name": "Zikula Team",
"homepage": "https://github.com/zikula/core/graphs/contributors"
}
],
"require": {
"php": ">=5.4.1",
"composer/installers": "1.0.*",
"robloach/component-installer": "*",
"zikula/legal-module": "dev-master",
"zikula/profile-module": "dev-master",
"symfony/symfony": "2.8.*",
"symfony/swiftmailer-bundle": "2.3.*",
"symfony/monolog-bundle": "2.7.*",
"sensio/distribution-bundle": "5.0.*",
"sensio/framework-extra-bundle": "3.0.*",
"sensio/generator-bundle": "3.0.*",
"elao/web-profiler-extra-bundle" : "~2.3.3",
"matthiasnoback/symfony-service-definition-validator": "1.2.*",
"matthiasnoback/symfony-console-form": "1.*",
"zikula/generator-bundle": "dev-master",
"acasademont/i18n-routing-bundle": "2.0.0",
"jms/translation-bundle": "~1.2.0",
"nikic/php-parser": "~1.4.0",
"friendsofsymfony/jsrouting-bundle": "1.5.*",
"doctrine/orm": "2.5.*",
"doctrine/doctrine-bundle": "1.5.*",
"stof/doctrine-extensions-bundle": "~1.2.1",
"gedmo/doctrine-extensions": "2.4.*",
"imagine/Imagine": "0.6.*",
"michelf/php-markdown": "1.6.*",
"phpids/phpids": "dev-master",
"twig/extensions": "~1.3.0",
"vierbergenlars/php-semver": "~3.0",
"zikula/wizard": "dev-master",
"zikula/filesystem": "dev-master",
"zikula/jquery-bundle": "dev-master",
"zikula/jquery-ui-bundle": "dev-master",
"zikula/bootstrap-bundle": "dev-master",
"zikula/fontawesome-bundle": "dev-master",
"zikula/jquery-minicolors-bundle": "dev-master",
"bootstrap-plus/bootstrap-media-lightbox": "3.*",
"bootstrap-plus/bootstrap-jqueryui": "dev-master",
"twitter/typeahead.js": "~0.11.1",
"vakata/jstree": "3.*",
"afarkas/html5shiv": "3.7.*",
"ramsey/array_column": "1.1.*",
"beberlei/DoctrineExtensions": "v0.3",
"drak/doctrine1": "dev-master",
"drak/smarty": "dev-master",
"oyejorge/less.php": "dev-master"
},
"scripts": {
"post-install-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Zikula\\Composer\\LessGenerator::generateCombinedBootstrapFontAwesomeCSS"
],
"post-update-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Zikula\\Composer\\LessGenerator::generateCombinedBootstrapFontAwesomeCSS"
]
},
"config": {
"vendor-dir": "src/vendor",
"bin-dir": "bin",
"component-dir": "src/web",
"platform": {
"php": "5.4.2"
}
},
"extra": {
"symfony-app-dir": "src/app",
"symfony-web-dir": "src/web",
"installer-paths": {
"src/modules/{$vendor}/{$name}": ["type:zikula-module"],
"src/themes/{$vendor}/{$name}": ["type:zikula-theme"]
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/zikula-modules/Legal"
},
{
"type": "vcs",
"url": "https://github.com/zikula-modules/Profile"
}
]
}