forked from TYPO3GmbH/svg_sanitizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
28 lines (28 loc) · 853 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
28
<?php
/************************************************************************
* Extension Manager/Repository config file for ext "svg_sanitizer".
************************************************************************/
$EM_CONF[$_EXTKEY] = [
'title' => 'SVG Sanitizer',
'description' => 'Sanitize SVG files on upload',
'category' => 'extension',
'constraints' => [
'depends' => [
'typo3' => '8.7.13-11.0.99'
],
'conflicts' => [],
],
'autoload' => [
'psr-4' => [
'T3G\\SvgSanitizer\\' => 'Classes',
],
],
'state' => 'stable',
'uploadfolder' => 0,
'createDirs' => '',
'clearCacheOnLoad' => 1,
'author' => 'Frank Nägler',
'author_email' => '[email protected]',
'author_company' => 'TYPO3 GmbH',
'version' => '1.0.3',
];