-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathext_emconf.php
35 lines (34 loc) · 856 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
34
35
<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'Symfony Messenger Wrapper',
'description' => 'Symfony Messenger Wrapper',
'category' => 'misc',
'author' => 'Sebastian Schreiber',
'author_email' => '[email protected]',
'state' => 'beta',
'internal' => '',
'uploadfolder' => '0',
'createDirs' => '',
'clearCacheOnLoad' => 0,
'version' => '2.1.0',
'constraints' => [
'depends' => [
'typo3' => '10.4.0-12.9.99',
'typo3_psr_cache_adapter' => '1.0.0-1.9.99'
],
'conflicts' => [
],
'suggests' => [
],
],
'autoload' => [
'psr-4' => [
'Ssch\\T3Messenger\\' => 'Classes',
],
],
'autoload-dev' => [
'psr-4' => [
'Ssch\\T3Messenger\\Tests\\' => 'Tests',
],
],
];