forked from aimeos/aimeos-typo3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
45 lines (42 loc) · 1.48 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
44
45
<?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 web shop',
'description' => 'Aimeos is a fast, flexible and usability optimized shop system and e-commerce solution available in multiple languages (also available as TYPO3 distribution). Several plugins e.g. for facetted search, product listing, detail view, basket, checkout process and other parts of a shop are available. Furthermore, Aimeos offers powerful interfaces to integrate CRM and ERP systems as well as payment and delivery service providers',
'category' => 'plugin',
'version' => '19.1.0-dev',
'module' => '',
'state' => 'stable',
'uploadfolder' => 1,
'createDirs' => '',
'modify_tables' => '',
'clearcacheonload' => 1,
'author' => 'Aimeos',
'author_email' => '[email protected]',
'author_company' => '',
'constraints' => array(
'depends' => array(
'php' => '5.4.0-7.99.99',
'typo3' => '7.6.0-9.99.99',
'scheduler' => '7.6.0-9.99.99',
'static_info_tables' => '6.0.0-6.99.99',
),
'conflicts' => array(
),
'suggests' => array(
'realurl' => '1.12.8-2.99.99',
),
),
'autoload' => array (
'psr-4' => array (
'Aimeos\\Aimeos\\' => 'Classes',
),
),
);
?>