forked from lochmueller/html5videoplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.53 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
{
"name": "lochmueller/html5videoplayer",
"type": "typo3-cms-extension",
"version": "7.1.0",
"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": {
"php": ">=7.0.0",
"typo3/cms-core": "~7.6.0||~8.7||dev-master"
},
"replace": {
"html5videoplayer": "self.version",
"typo3-ter/html5videoplayer": "self.version"
},
"homepage": "https://github.com/lochmueller/html5videoplayer",
"license": "GPL-2.0+",
"support": {
"issues": "https://github.com/lochmueller/html5videoplayer/issues"
},
"require-dev": {
"namelesscoder/typo3-repository-client": "2.0.0",
"phpunit/phpunit": "~4.8.0",
"squizlabs/php_codesniffer": "^2.6",
"phpmd/phpmd": "^2.4"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web",
"Package": {
"partOfMinimalUsableSystem": true
}
}
}
}