forked from aimeos/aimeos-typo3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
43 lines (40 loc) · 1.29 KB
/
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
36
37
38
39
40
41
42
43
<?php
########################################################################
# Extension Manager/Repository config file for ext: "aimeos"
#
# Manual updates:
# Only the data in the array - anything else is removed by next write.
# "version" and "dependencies" must not be touched!
########################################################################
$EM_CONF['aimeos'] = array(
'title' => 'Aimeos shop and e-commerce framework',
'description' => 'Professional, full-featured and ultra-fast TYPO3 e-commerce extension for online shops, complex B2B applications and #gigacommerce. Turns TYPO3 into the best platform for content commerce and your e-commerce requirements (also available as TYPO3 distribution)',
'category' => 'plugin',
'version' => '20.4.0-dev',
'module' => '',
'state' => 'beta',
'uploadfolder' => 1,
'modify_tables' => '',
'clearcacheonload' => 1,
'author' => 'Aimeos',
'author_email' => '[email protected]',
'author_company' => '',
'constraints' => array(
'depends' => array(
'php' => '7.2.0-7.99.99',
'typo3' => '9.5.0-10.99.99',
'scheduler' => '9.5.0-10.99.99',
'static_info_tables' => '6.0.0-6.99.99',
),
'conflicts' => array(
),
'suggests' => array(
),
),
'autoload' => array(
'psr-4' => array(
'Aimeos\\Aimeos\\' => 'Classes',
),
),
);
?>