-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 1.02 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
{
"name": "o-ba/custom_dashboard_widgets",
"description": "Set of custom widgets for the new dashboard module. Let's start creating your own!",
"type": "typo3-cms-extension",
"license": "GPL-3.0",
"keywords": ["TYPO3 CMS"],
"authors": [
{
"name": "Oliver Bartsch",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"typo3/cms-core": "^12.4",
"typo3/cms-dashboard": "^12.4"
},
"require-dev": {
"roave/security-advisories": "dev-master"
},
"suggest": {
"typo3/cms-extensionmanager": "Needed for widget 'localExtensions'",
"typo3/cms-scheduler": "Needed for widget 'failedSchedulerTasks'"
},
"extra": {
"typo3/cms": {
"extension-key": "custom_dashboard_widgets"
}
},
"replace": {
"typo3-ter/custom_dashboard_widgets": "self.version"
},
"autoload": {
"psr-4": {
"Bo\\CustomDashboardWidgets\\": "Classes"
}
}
}