-
Notifications
You must be signed in to change notification settings - Fork 9
/
ext_emconf.php
33 lines (32 loc) · 909 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
29
30
31
32
33
<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'Embedding schema.org vocabulary',
'description' => 'API and view helpers for schema.org markup',
'category' => 'fe',
'state' => 'stable',
'clearCacheOnLoad' => true,
'author' => 'Chris Müller',
'author_email' => '[email protected]',
'version' => '3.7.1',
'constraints' => [
'depends' => [
'php' => '8.1.0-0.0.0',
'typo3' => '11.5.19-13.4.99',
],
'conflicts' => [
'sdbreadcrumb' => '',
],
'suggests' => [
'adminpanel' => '',
'lowlevel' => '',
'schema_auto' => '',
'schema_bib' => '',
'schema_health' => '',
'schema_pending' => '',
'schema_virtuallocation' => '',
],
],
'autoload' => [
'psr-4' => ['Brotkrueml\\Schema\\' => 'Classes']
],
];