-
Notifications
You must be signed in to change notification settings - Fork 5
/
ext_emconf.php
33 lines (32 loc) · 933 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' => 'Headless Container Content Elements',
'description' => 'Container Content Elements (EXT:container) json output for EXT:headless',
'category' => 'fe',
'author' => 'Ramón Schlosser',
'author_email' => 'schlosser@itplusx.de',
'author_company' => 'ITplusX GmbH',
'state' => 'stable',
'version' => '2.0.0',
'clearCacheOnLoad' => true,
'constraints' => [
'depends' => [
'php' => '8.1.0-8.3.99',
'typo3' => '12.4.3-12.4.99',
'headless' => '4.0.0-4.99.99',
'container' => '2.0.0-2.99.99',
],
'conflicts' => [],
'suggests' => [],
],
'autoload' => [
'psr-4' => [
'ITplusX\\HeadlessContainer\\' => 'Classes/'
]
],
'autoload-dev' => [
'psr-4' => [
'ITplusX\\HeadlessContainer\\Tests\\' => 'Tests/'
]
],
];