-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
51 lines (51 loc) · 1.15 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": "de-swebhosting-typo3-extension/html5mediakit",
"description": "Allows easy embedding of HTML5 video and audio elements.",
"license": "GPL-3.0-or-later",
"type": "typo3-cms-extension",
"require": {
"php": "^8.2",
"typo3/cms-core": "~13.4.0",
"typo3/cms-extbase": "~13.4.0",
"typo3/cms-frontend": "~13.4.0"
},
"require-dev": {
"de-swebhosting/typo3-extension-buildtools": "dev-TYPO3_13",
"typo3/cms-filelist": "*",
"typo3/cms-fluid-styled-content": "*",
"typo3/cms-install": "*"
},
"autoload": {
"psr-4": {
"Sto\\Html5mediakit\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Sto\\Html5mediakit\\Tests\\": "Tests"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": "bin",
"vendor-dir": ".Build/vendor"
},
"extra": {
"typo3/class-alias-loader": {
"always-add-alias-loader": true
},
"typo3/cms": {
"extension-key": "html5mediakit",
"web-dir": ".Build/Web"
}
},
"scripts": {
"post-autoload-dump": [
"De\\SWebhosting\\Buildtools\\ExtensionTestEnvironment::prepare"
]
}
}