forked from georgringer/t3monitoring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 926 Bytes
/
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
{
"name": "t3monitor/t3monitoring",
"type": "typo3-cms-extension",
"description": "T3monitoring service",
"license": [
"GPL-2.0-or-later"
],
"require": {
"php": "^8.2",
"ext-json": "*",
"ext-dom": "*",
"typo3/cms-core": "^12",
"typo3/cms-backend": "^12",
"typo3/cms-extbase": "^12",
"typo3/cms-extensionmanager": "^12"
},
"require-dev": {
"typo3/minimal": "^12",
"typo3/testing-framework": "*"
},
"autoload": {
"psr-4": {
"T3Monitor\\T3monitoring\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"T3Monitor\\T3monitoring\\Tests\\": "Tests"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"web-dir": ".Build/web",
"extension-key": "t3monitoring"
},
"branch-alias": {
"dev-core-v12": "3.x-dev"
}
}
}