-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
55 lines (55 loc) · 1.47 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
{
"name": "lochmueller/html5videoplayer",
"type": "typo3-cms-extension",
"description": "A video extension for TYPO3 built on the VideoJS HTML5 video player library. Allows you to embed video in your website using HTML5 with Flash fallback support for non-HTML5 browsers. Work on VideoJS 4.12.6 and support YouTube and Vimeo video in the same style.",
"autoload": {
"psr-4": {
"HVP\\Html5videoplayer\\": "Classes/"
}
},
"keywords": [
"TYPO3 CMS",
"HTML5 Video Player",
"Extbase"
],
"authors": [
{
"name": "Tim Lochmüller",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://github.com/lochmueller"
}
],
"require": {
"typo3/cms-core": "^12.4"
},
"replace": {
"typo3-ter/html5videoplayer": "self.version"
},
"homepage": "https://github.com/lochmueller/html5videoplayer",
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://github.com/lochmueller/html5videoplayer/issues"
},
"require-dev": {
"typo3/testing-framework": "^7"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "html5videoplayer",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web",
"Package": {
"partOfMinimalUsableSystem": true
}
}
}
}