forked from OXID-eSales/oxideshop_ce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
99 lines (99 loc) · 3.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"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",
"require": {
"php": "^7.3",
"ext-dom": "*",
"ext-gd": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-tokenizer": "*",
"phpmailer/phpmailer": "^v6.1.6",
"smarty/smarty": "^v2.6.31",
"doctrine/dbal": "^v2.5.13",
"doctrine/collections": "^1.4.0",
"monolog/monolog": "^v1.23.0",
"psr/container": "1.0.*",
"symfony/event-dispatcher": "^5.0.4",
"symfony/dependency-injection": "^5.0.4",
"symfony/config": "^5.0.4",
"symfony/yaml": "^5.0.4",
"symfony/expression-language": "^5.0.4",
"symfony/lock": "^5.0.4",
"symfony/console": "^5.0.4",
"webmozart/path-util": "^2.3",
"symfony/finder": "^5.0.4",
"symfony/filesystem": "^5.0.4",
"codeception/module-webdriver": "^1.0",
"codeception/module-db": "^1.0"
},
"require-dev": {
"oxid-esales/flow-theme": "dev-master",
"oxid-esales/oxideshop-doctrine-migration-wrapper": "dev-master",
"oxid-esales/oxideshop-db-views-generator": "^v1.2.0",
"oxid-esales/oxideshop-demodata-installer": "dev-master",
"oxid-esales/oxideshop-composer-plugin": "dev-master",
"oxid-esales/oxideshop-unified-namespace-generator": "dev-master",
"incenteev/composer-parameter-handler": "2.1.x-dev",
"oxid-esales/oxideshop-ide-helper": "dev-master",
"oxid-esales/azure-theme": "dev-master",
"oxid-esales/oxideshop-facts": "dev-master",
"oxid-esales/testing-library": "dev-master",
"squizlabs/php_codesniffer": "^3.5.4",
"composer/composer": "^1",
"vimeo/psalm": "^3.8"
},
"autoload": {
"psr-4": {
"OxidEsales\\EshopCommunity\\": "./source"
}
},
"autoload-dev": {
"psr-4": {
"OxidEsales\\EshopCommunity\\Tests\\": "./tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["bin/oe-console"],
"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/**/*",
"Internal/**/*"
]
},
"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"
}
}
}
}