forked from OXID-eSales/oxideshop_ce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 2.6 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "oxid-esales/oxideshop-ce",
"description": "This package contains OXID eShop CE source code.",
"type": "oxideshop",
"keywords": ["oxid", "modules", "eShop"],
"homepage": "https://www.oxid-esales.com/en/home.html",
"license": [
"GPL-3.0-only",
"proprietary"
],
"require": {
"php": ">=5.6",
"phpmailer/phpmailer": "^v5.2.22",
"smarty/smarty": "^v2.6.30",
"oxid-esales/flow-theme": "dev-master || ^2.2.0",
"oxid-esales/oxideshop-doctrine-migration-wrapper": "^v2.1.0",
"oxid-esales/oxideshop-db-views-generator": "^v1.1.1",
"doctrine/dbal": "v2.5.12",
"oxid-esales/oxideshop-demodata-installer": "^v1.1.0",
"oxid-esales/oxideshop-composer-plugin": "^v2.0.0",
"oxid-esales/oxideshop-unified-namespace-generator": "dev-master || ^1.0.0"
},
"require-dev": {
"oxid-esales/testing-library": "dev-master",
"oxid-esales/coding-standards": "^v3.0.2",
"oxid-esales/coding-standards-wrapper": "dev-master",
"incenteev/composer-parameter-handler": "~v2.0",
"oxid-esales/oxideshop-ide-helper": "^3.0",
"oxid-esales/azure-theme": "dev-b-1.4"
},
"autoload": {
"psr-4": {
"OxidEsales\\EshopCommunity\\": "./source"
}
},
"autoload-dev": {
"psr-4": {
"OxidEsales\\EshopCommunity\\Tests\\": "./tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"@oe:ide-helper:generate"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"@oe:ide-helper:generate"
],
"oe:ide-helper:generate": [
"if [ -f ./vendor/bin/oe-eshop-ide_helper ]; then oe-eshop-ide_helper; fi"
]
},
"extra": {
"oxideshop": {
"blacklist-filter": [
"Application/Component/**/*",
"Application/Controller/**/*",
"Application/Model/**/*",
"Core/**/*"
]
},
"incenteev-parameters": {
"file": "test_config.yml",
"dist-file": "vendor/oxid-esales/testing-library/test_config.yml.dist",
"parameter-key": "mandatory_parameters",
"env-map": {
"shop_path": "SHOP_PATH",
"shop_tests_path": "SHOP_TESTS_PATH",
"partial_module_paths": "PARTIAL_MODULE_PATHS"
}
}
}
}