forked from aimeos/aimeos-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.php
63 lines (60 loc) · 1.48 KB
/
manifest.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
/**
* @copyright Copyright (c) Metaways Infosystems GmbH, 2011
* @license LGPLv3, http://opensource.org/licenses/LGPL-3.0
*/
return array(
'name' => 'aimeos-core',
'depends' => array(),
'include' => array(
'lib/mshoplib/src',
'lib/mwlib/src',
'client/html/src',
'controller/common/src',
'controller/frontend/src',
'controller/extjs/src',
'controller/jobs/src',
'lib/mwlib/lib',
),
'config' => array(
'mysql' => array(
'lib/mshoplib/config/common',
'lib/mshoplib/config/mysql',
'controller/frontend/config/controller',
'controller/extjs/config/controller',
'config',
),
),
'i18n' => array(
'client/extjs' => 'client/extjs/i18n',
'client/extjs/ext' => 'client/extjs/i18n/ext',
'client/html' => 'client/html/i18n',
'client/html/code' => 'client/html/i18n/code',
'client/html/country' => 'client/html/i18n/country',
'client/html/currency' => 'client/html/i18n/currency',
'client/html/language' => 'client/html/i18n/language',
'controller/frontend' => 'controller/frontend/i18n',
'mshop/code' => 'lib/mshoplib/i18n/code',
'mshop' => 'lib/mshoplib/i18n',
),
'setup' => array(
'lib/mshoplib/setup',
),
'custom' => array(
'client/extjs' => array(
'client/extjs/manifest.jsb2',
),
'client/html' => array(
'client/html/layouts',
),
'controller/extjs' => array(
'controller/extjs/src',
),
'controller/jobs' => array(
'controller/jobs/src',
),
'controller/jobs/layouts' => array(
'controller/jobs/layouts',
),
),
);