forked from isotope/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.8 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
{
"name":"isotope/isotope-core",
"description":"Core repository of Isotope eCommerce, an eCommerce extension for Contao Open Source CMS",
"keywords":["contao", "isotope"],
"type":"contao-module",
"license":"LGPL-3.0+",
"authors":[
{
"name":"terminal42 gmbh",
"homepage":"https://www.terminal42.ch"
},
{
"name":"Isotope Workgroup",
"homepage":"https://isotopeecommerce.org"
}
],
"require":{
"php":">=5.3.2",
"contao/core":">=3.3.4,<3.5",
"contao-community-alliance/composer-plugin":"2.*",
"contao-legacy/conditionalselectmenu":"~3.0",
"contao-legacy/namespaceclassloader":"~1.0",
"terminal42/dcawizard":"~2.3",
"contao-legacy/haste":"~4.3",
"menatwork/contao-multicolumnwizard": "~3.2",
"contao-legacy/tablelookupwizard":"~2.0",
"terminal42/notification_center":"~1.0",
"terminal42/dc_multilingual":"~2.0"
},
"replace": {
"contao-legacy/isotope": "self.version"
},
"autoload": {
"psr-0": {
"Isotope\\": [
"system/modules/isotope/library/",
"system/modules/isotope_reports/library/",
"system/modules/isotope_rules/library/"
]
},
"classmap": [
"system/modules/isotope/drivers"
]
},
"extra":{
"contao": {
"sources":{
"system/modules/isotope": "system/modules/isotope",
"system/modules/isotope_reports": "system/modules/isotope_reports",
"system/modules/isotope_rules": "system/modules/isotope_rules"
},
"runonce": [
"system/modules/isotope/config/upgrade.php"
]
}
}
}