forked from Tuurlijk/t3ext-h5p
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.02 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
{
"name": "ambersive/h5p",
"type": "typo3-cms-extension",
"description": "Create and add rich content to your website for free. Some examples of what you get with H5P are Interactive Video, Quizzes, Collage and Timeline.",
"keywords": [
"h5p",
"content",
"interactive",
"html5"
],
"license": "GPL-2.0+",
"authors": [
{
"name": "Michiel Roos",
"homepage": "https://www.michielroos.com",
"role": "Developer"
}
],
"require": {
"h5p/h5p-core": "1.22.0 || dev-master || dev-directory-separator",
"h5p/h5p-editor": "1.22.0 || dev-master || dev-directory-separator",
"guzzlehttp/guzzle": "^7.4.1",
"typo3/cms-core": "^11.5.0"
},
"replace": {
"typo3-ter/h5p": "self.version"
},
"config": {
"bin-dir": "bin",
"optimize-autoloader": true
},
"extra": {
"branch-alias": {
"dev-master": "0.0.x-dev"
},
"typo3/cms": {
"extension-key": "h5p"
}
},
"autoload": {
"psr-4": {
"MichielRoos\\H5p\\": "Classes"
}
}
}