-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
56 lines (56 loc) · 1.45 KB
/
composer.json
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
{
"name": "arcavias/arcavias-core",
"description": "e-commerce framework for web shops, portals and market places",
"homepage": "http://www.arcavias.com/en",
"license": "LGPL-3.0",
"keywords": ["e-commerce", "shop", "portal", "market place"],
"support": {
"source": "https://github.com/Arcavias/arcavias-core",
"issues": "https://bugs.arcavias.com",
"forum": "https://forum.arcavias.com",
"wiki": "https://docs.arcavias.com"
},
"require": {
"php": ">=5.2.0",
"ext-curl": "*",
"ext-dom": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pcre": "*",
"ext-PDO": "*",
"ext-pdo_mysql": "*",
"ext-zip": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "1.*",
"phpunit/phpunit": "3.7.*",
"phing/phing": "2.4.*"
},
"suggest": {
"phpdocumentor/phpdocumentor": "Required for generating the API documentation"
},
"autoload": {
"psr-0": {
"MShop": "lib/mshoplib/src",
"MAdmin": "lib/mshoplib/src",
"MW": "lib/mwlib/src",
"Client_Html": "client/html/src",
"Controller_Common": "controller/common/src",
"Controller_Frontend": "controller/frontend/src",
"Controller_ExtJS": "controller/extjs/src",
"Controller_Jobs": "controller/jobs/src",
"": ["lib/mwlib/lib", "."]
},
"classmap": [
"lib/mshoplib/src",
"lib/mwlib/lib",
"lib/mwlib/src",
"client/html/src",
"controller/common/src",
"controller/frontend/src",
"controller/extjs/src",
"controller/jobs/src",
"Arcavias.php"
]
}
}