-
-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathcomposer.json
114 lines (114 loc) · 4.08 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
{
"name":"isotope/isotope-core",
"description":"Isotope is the premier open source eCommerce solution for Contao Open Source CMS",
"homepage": "https://isotopeecommerce.org",
"keywords":["contao", "isotope"],
"type":"contao-module",
"license":"LGPL-3.0-or-later",
"authors": [
{
"name": "terminal42 gmbh",
"homepage": "https://www.terminal42.ch"
}
],
"funding": [
{
"type": "other",
"url": "https://circle.isotopeecommerce.org"
},
{
"type": "github",
"url": "https://github.com/terminal42"
},
{
"type": "other",
"url": "https://ko-fi.com/terminal42"
}
],
"support": {
"issues": "https://github.com/isotope/core/issues",
"source": "https://github.com/isotope/core",
"forum": "https://community.contao.org/de/forumdisplay.php?111-isotope",
"docs": "https://docs.isotopeecommerce.org/"
},
"require":{
"php": "^7.4 || ^8.0",
"composer-runtime-api": "^2",
"contao/core-bundle": "^4.13",
"contao-community-alliance/composer-plugin": "^2.4 || ^3.0",
"doctrine/dbal": "^3.0",
"terminal42/contao-conditionalselectmenu":"^3.0.3 || ^4.0",
"terminal42/dcawizard": "^2.3 || ^3.0",
"codefog/contao-haste": "^4.24.3",
"menatwork/contao-multicolumnwizard-bundle": "^3.4",
"terminal42/contao-tablelookupwizard": "^3.2 || ^4.0",
"terminal42/notification_center": "^1.0",
"terminal42/dc_multilingual": "^4.0",
"tecnickcom/tcpdf": "^6.2.22",
"symfony/filesystem": "^5.4 || ^6.0",
"symfony/http-client": "^5.4 || ^6.0",
"symfony/string": "^5.4 || ^6.0",
"symfony/polyfill-php80": "^1.25",
"hashids/hashids": "^4.1"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"terminal42/contao-fineuploader": "^2.0 || ^3.0",
"terminal42/contao-changelanguage": "^3.0",
"petschko/dhl-php-sdk": "dev-master@dev",
"mpay24/mpay24-php": "^4.0",
"friendsofphp/php-cs-fixer": "^2.14",
"terminal42/swissbilling-api": "^1.0",
"terminal42/contao-build-tools": "dev-main"
},
"suggest": {
"terminal42/contao-fineuploader": "For file uploads in frontend using FineUploader",
"petschko/dhl-php-sdk": "For DHL Business shipping",
"mpay24/mpay24-php": "For mPAY24 payment provider",
"terminal42/swissbilling-api": "For SwissBilling payment provider",
"contao/tcpdf-bundle": "Required for the standard document type in Contao 4.7+"
},
"conflict": {
"terminal42/contao-fineuploader": "< 2.0 || >= 4.0",
"terminal42/contao-changelanguage": "< 3.0 || >= 4.0",
"contao/manager-plugin": "<2.0 || >= 3.0",
"mpay24/mpay24-php": "< 4.0 || >= 5.0"
},
"autoload": {
"psr-0": {
"Isotope\\": [
"system/modules/isotope/library",
"system/modules/isotope_reports/library",
"system/modules/isotope_rules/library"
],
"UnitedPrototype\\": [
"system/modules/isotope/library"
]
},
"classmap": [
"system/modules/isotope/drivers/"
]
},
"config": {
"allow-plugins": {
"terminal42/contao-build-tools": true,
"contao/manager-plugin": false,
"contao-community-alliance/composer-plugin": false,
"contao-components/installer": false,
"php-http/discovery": false
}
},
"extra":{
"contao-manager-plugin": "Isotope\\ContaoManager\\Plugin",
"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"
]
}
}
}