-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
59 lines (59 loc) · 1.29 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
{
"name": "de-swebhosting-typo3-extension/mediaoembed",
"description": "External media (YouTube, Flickr, ...) content elements using the http://oembed.com/ standard.",
"license": "GPL-3.0-or-later",
"type": "typo3-cms-extension",
"authors": [
{
"name": "Alexander Stehlik",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"ext-dom": "*",
"typo3/cms-core": "~13.4.0"
},
"require-dev": {
"de-swebhosting/typo3-extension-buildtools": "dev-TYPO3_13",
"typo3/cms-filelist": "*",
"typo3/cms-fluid-styled-content": "*",
"typo3/cms-install": "*"
},
"replace": {
"typo3-ter/mediaoembed": "self.version"
},
"autoload": {
"psr-4": {
"Sto\\Mediaoembed\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Sto\\Mediaoembed\\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": "mediaoembed",
"web-dir": ".Build/Web"
}
},
"scripts": {
"post-autoload-dump": [
"De\\SWebhosting\\Buildtools\\ExtensionTestEnvironment::prepare"
]
}
}