-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_emconf.php
More file actions
30 lines (29 loc) · 782 Bytes
/
ext_emconf.php
File metadata and controls
30 lines (29 loc) · 782 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
26
27
28
29
30
<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'Shopware 6 API',
'description' => 'TYPO3 extension to import and display products from the Shopware 6 Store API',
'category' => 'plugin',
'author' => 'Thomas Paul',
'author_email' => 'mail@thomaspaul.at',
'state' => 'alpha',
'clearCacheOnLoad' => 1,
'version' => '0.0.1',
'constraints' => [
'depends' => [
'typo3' => '13.0.0-13.4.99',
'php' => '8.1.0-8.2.99',
],
'conflicts' => [],
'suggests' => [],
],
'autoload' => [
'psr-4' => [
'ThomasPaul\\Shopware6Api\\' => 'Classes/',
],
],
'autoload-dev' => [
'psr-4' => [
'ThomasPaul\\Shopware6Api\\Tests\\' => 'Tests/',
],
],
];