-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
67 lines (67 loc) · 1.48 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
{
"name": "stefanfroemken/mysql-widget",
"type": "typo3-cms-extension",
"description": "Show MySQL status in widgets of TYPO3 DashBoard",
"license": "GPL-2.0-or-later",
"keywords": [
"typo3",
"TYPO3 CMS",
"mysql",
"status",
"dashboard",
"widget"
],
"homepage": "https://www.typo3lexikon.de",
"authors": [
{
"name": "Stefan Froemken",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/froemken/mysql_widget/issues",
"source": "https://github.com/froemken/mysql_widget"
},
"require": {
"php": "^8.1",
"typo3/cms-core": "^12.4.17 || ^13.1.1",
"typo3/cms-dashboard": "^12.4.17 || ^13.1.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.52",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^11.0.3",
"typo3/testing-framework": "dev-main"
},
"autoload": {
"psr-4": {
"StefanFroemken\\MySqlWidget\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"StefanFroemken\\MySqlWidget\\Tests\\": "Tests"
}
},
"replace": {
"typo3-ter/mysql_widget": "self.version",
"typo3-ter/mysql-widget": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"sbuerk/typo3-cmscomposerinstallers-testingframework-bridge": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "mysql_widget",
"web-dir": ".Build/public"
}
}
}