-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
51 lines (51 loc) · 1.74 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
{
"name": "heimrichhannot/contao-submissions",
"description": "A generic module to store and handle submissions in contao.",
"keywords": [
"contao",
"submissions",
"form",
"module",
"developer"
],
"type": "contao-module",
"homepage": "https://github.com/heimrichhannot/contao-submissions",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Heimrich & Hannot",
"email": "[email protected]",
"homepage": "http://www.heimrich-hannot.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/heimrichhannot/contao-submissions/issues"
},
"require": {
"php": "^7.1 || ^8.0",
"contao/core-bundle": "^3.5.1 || ~4.1",
"contao-community-alliance/composer-plugin": "~2.4 || ~3.0",
"heimrichhannot/contao-haste_plus": "~1.5",
"terminal42/notification_center": ">=1.3.0",
"heimrichhannot/contao-multi_column_editor": "^1.4",
"heimrichhannot/contao-notification_center_plus": ">=1.0.4"
},
"suggest": {
"heimrichhannot/contao-frontendedit": "Offers full CRUD (create, read, update, delete) functionality which could be used for submissions.",
"heimrichhannot/contao-exporter": "Offers exporter functionality.",
"heimrichhannot/contao-cleaner": "This module adds cleaner functionality for periodically removing arbitrary entities fulfilling a certain condition (using TL_CRON or your server's cron)."
},
"autoload": {
"classmap": [
""
]
},
"extra": {
"contao": {
"sources": {
"": "system/modules/submissions"
}
}
}
}