-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathext_emconf.php
More file actions
25 lines (25 loc) · 806 Bytes
/
ext_emconf.php
File metadata and controls
25 lines (25 loc) · 806 Bytes
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
<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'TemplaVoilà! Plus - Link Validator',
'description' => 'Allows the Link Validator to check links inside TemplaVoilà! Plus elements',
'category' => 'plugin',
'version' => '0.2.0',
'state' => 'stable',
'clearCacheOnLoad' => 1,
'author' => 'Alexander Opitz',
'author_email' => 'alexander.opitz@pluspol-interactive.de',
'author_company' => 'PLUSPOL interactive GbR',
'constraints' => [
'depends' => [
'php' => '7.0.0-7.3.99',
'typo3' => '7.6.0-9.5.99',
'linkvalidator' => '7.6.0-9.5.99',
'templavoilaplus' => '7.1.2-7.99.99'
],
],
'autoload' => [
'psr-4' => [
'Ppi\\Templavoilaplus\\Linkvalidator\\' => 'Classes/',
],
],
];