-
Notifications
You must be signed in to change notification settings - Fork 742
/
ext_emconf.php
41 lines (38 loc) · 1.32 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
<?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'] = [
'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' => '24.10.0-dev',
'module' => '',
'state' => 'beta',
'modify_tables' => '',
'clearcacheonload' => 1,
'author' => 'Aimeos',
'author_email' => '[email protected]',
'author_company' => '',
'constraints' => [
'depends' => [
'php' => '8.1.0-8.99.99',
'typo3' => '12.4.0-13.99.99',
'scheduler' => '12.4.0-13.99.99',
],
'conflicts' => [
],
'suggests' => [
],
],
'autoload' => [
'psr-4' => [
'Aimeos\\Aimeos\\' => 'Classes',
],
],
];
?>