forked from aimeos/aimeos-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.php
40 lines (37 loc) · 854 Bytes
/
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
<?php
/**
* @license LGPLv3, https://opensource.org/licenses/LGPL-3.0
* @copyright Metaways Infosystems GmbH, 2011
* @copyright Aimeos (aimeos.org), 2015-2017
*/
return array(
'name' => 'aimeos-core',
'depends' => array(),
'include' => array(
'lib/mshoplib/src',
'lib/mwlib/src',
'controller/common/src',
'controller/jobs/src',
),
'config' => array(
'config',
'lib/mshoplib/config',
),
'i18n' => array(
'controller/common' => 'controller/common/i18n',
'controller/jobs' => 'controller/jobs/i18n',
'mshop/code' => 'lib/mshoplib/i18n/code',
'mshop' => 'lib/mshoplib/i18n',
'language' => 'i18n/language',
'currency' => 'i18n/currency',
'country' => 'i18n/country',
),
'setup' => array(
'lib/mshoplib/setup',
),
'custom' => array(
'controller/jobs/templates' => array(
'lib/mshoplib/templates',
),
),
);