-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
49 lines (49 loc) · 1.66 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
{
"name": "hauerheinrich/hh-video-extender",
"type": "typo3-cms-extension",
"description": "Hauer-Heinrich - Extends sys_file_reference video/media. Added attributes to select in content element (eg textmedia) like: muted, loop, controls, previewImage and so on.",
"authors": [
{
"name": "Christian Hackl",
"email": "[email protected]",
"homepage": "http://www.hauer-heinrich.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/Hauer-Heinrich/hh_video_extender/issues",
"source": "https://github.com/Hauer-Heinrich/hh_video_extender",
"docs": "https://github.com/Hauer-Heinrich/hh_video_extender/blob/master/README.md"
},
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.com/paypalme/hauerheinrich"
}
],
"version": "0.3.2",
"license": ["GPL-2.0-or-later"],
"keywords": ["TYPO3 CMS", "extension"],
"replace": {
"hauer-heinrich/hh_video_extender": "self.version",
"typo3-ter/hh-video-extender": "self.version"
},
"require": {
"typo3/cms-core": "^12.3.0 || ^13.4.0",
"typo3/cms-fluid": "^12.3.0 || ^13.4.0",
"typo3/cms-frontend": "^12.3.0 || ^13.4.0",
"typo3/cms-fluid-styled-content": "^12.3.0 || ^13.4.0"
},
"autoload": {
"psr-4": {
"HauerHeinrich\\HhVideoExtender\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web",
"extension-key": "hh_video_extender"
}
}
}