forked from OXID-eSales/oxideshop_ce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
112 lines (112 loc) · 3.61 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
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "oxid-esales/oxideshop-ce",
"description": "This package contains OXID eShop CE source code.",
"license": "proprietary",
"type": "oxideshop",
"keywords": [
"oxid",
"modules",
"eShop"
],
"homepage": "https://www.oxid-esales.com/en/home.html",
"require": {
"php": "^8.0",
"ext-dom": "*",
"ext-gd": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-tokenizer": "*",
"doctrine/collections": "^1.4.0",
"doctrine/dbal": "^2.13",
"monolog/monolog": "^v1.23.0",
"oxid-esales/flow-theme": "^v4.0.0",
"oxid-esales/oxideshop-composer-plugin": "dev-b-7.0.x",
"oxid-esales/oxideshop-db-views-generator": "^v2.0.0",
"oxid-esales/oxideshop-demodata-installer": "dev-b-7.0.x",
"oxid-esales/oxideshop-doctrine-migration-wrapper": "dev-b-7.0.x",
"oxid-esales/oxideshop-facts": "dev-b-7.0.x",
"oxid-esales/oxideshop-unified-namespace-generator": "dev-b-7.0.x",
"phpmailer/phpmailer": "^v6.5.0",
"psr/container": "^1.1.1",
"smarty/smarty": "^v2.6.31",
"symfony/config": "^6.0",
"symfony/console": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/event-dispatcher": "^6.0",
"symfony/expression-language": "^6.0",
"symfony/filesystem": "^6.0",
"symfony/finder": "^6.0",
"symfony/lock": "^6.0",
"symfony/string": "^6.0",
"symfony/yaml": "^6.0",
"webmozart/path-util": "^2.3"
},
"require-dev": {
"codeception/codeception": "^5.0",
"codeception/module-asserts": "^3.0",
"codeception/module-db": "^3.0",
"codeception/module-filesystem": "^3.0",
"codeception/module-webdriver": "^3.1",
"composer/composer": "^2.0",
"incenteev/composer-parameter-handler": "^v2.1.4",
"mikey179/vfsstream": "~1.6.8",
"oxid-esales/codeception-modules": "dev-b-7.0.x",
"oxid-esales/codeception-page-objects": "dev-b-7.0.x",
"oxid-esales/developer-tools": "dev-b-7.0.x",
"oxid-esales/oxideshop-ide-helper": "dev-b-7.0.x",
"phpspec/prophecy-phpunit": "^v2.0.1",
"phpunit/phpunit": "^9.1.1",
"squizlabs/php_codesniffer": "^3.5.4",
"vimeo/psalm": "^4.4.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"OxidEsales\\EshopCommunity\\": "./source"
}
},
"autoload-dev": {
"psr-4": {
"OxidEsales\\EshopCommunity\\Tests\\": "./tests"
}
},
"bin": [
"bin/oe-console"
],
"config": {
"allow-plugins": {
"oxid-esales/oxideshop-composer-plugin": true,
"oxid-esales/oxideshop-unified-namespace-generator": true
}
},
"extra": {
"branch-alias": {
"dev-b-6.4.x": "6.4.x-dev",
"dev-b-6.5.x": "6.5.x-dev",
"dev-b-7.0.x": "7.0.x-dev"
},
"oxideshop": {
"blacklist-filter": [
"Application/Component/**/*",
"Application/Controller/**/*",
"Application/Model/**/*",
"Core/**/*",
"Internal/**/*"
]
}
},
"scripts": {
"post-install-cmd": [
"@oe:ide-helper:generate"
],
"post-update-cmd": [
"@oe:ide-helper:generate"
],
"oe:ide-helper:generate": [
"if [ -f ./vendor/bin/oe-eshop-ide_helper ]; then oe-eshop-ide_helper; fi"
]
}
}