forked from Tuurlijk/t3ext-h5p
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
27 lines (26 loc) · 927 Bytes
/
ext_emconf.php
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
<?php
$EM_CONF['h5p'] = [
'title' => 'H5p',
'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.',
'category' => 'fe',
'author' => 'Michiel Roos',
'author_company' => 'Michiel Roos',
'author_email' => 'michiel@michielroos.com',
'clearCacheOnLoad' => 0,
'dependencies' => '',
'state' => 'stable',
'uploadfolder' => 0,
'version' => '0.2.23',
'constraints' => [
'depends' => [
'typo3' => '7.0.0-9.5.99',
], 'conflicts' => [],
'suggests' => [],
],
'autoload' => [
'classmap'=> ["Resources/Public/Lib"],
'psr-4' => ['MichielRoos\\H5p\\' => 'Classes']
],
'conflicts' => '',
'suggests' => [],
];