forked from OXID-eSales/oxideshop_ce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
104 lines (104 loc) · 3.34 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
{
"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",
"require": {
"php": "^8.2",
"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/oxideshop-composer-plugin": "dev-b-8.0.x",
"oxid-esales/oxideshop-db-views-generator": "dev-b-8.0.x",
"oxid-esales/oxideshop-demodata-installer": "dev-b-8.0.x",
"oxid-esales/oxideshop-doctrine-migration-wrapper": "dev-b-8.0.x",
"oxid-esales/oxideshop-facts": "dev-b-8.0.x",
"oxid-esales/oxideshop-unified-namespace-generator": "dev-b-8.0.x",
"phpmailer/phpmailer": "^v6.5.0",
"psr/container": "^1.1.1",
"symfony/config": "^6.3",
"symfony/console": "^6.3",
"symfony/dependency-injection": "^6.3",
"symfony/event-dispatcher": "^6.3",
"symfony/expression-language": "^6.3",
"symfony/filesystem": "^6.3",
"symfony/finder": "^6.3",
"symfony/lock": "^6.3",
"symfony/string": "^6.3",
"symfony/yaml": "^6.3",
"symfony/mime": "^6.0"
},
"require-dev": {
"codeception/codeception": "^5.0",
"codeception/module-asserts": "^3.0",
"codeception/module-db": "^3.0",
"codeception/module-filesystem": "^3.0",
"codeception/module-webdriver": "^4.0",
"composer/composer": "^2.0",
"incenteev/composer-parameter-handler": "^v2.1.4",
"mikey179/vfsstream": "~1.6.8",
"oxid-esales/codeception-modules": "dev-b-8.0.x",
"oxid-esales/codeception-page-objects": "dev-b-8.0.x",
"oxid-esales/developer-tools": "dev-b-8.0.x",
"oxid-esales/oxideshop-ide-helper": "dev-b-8.0.x",
"phpspec/prophecy-phpunit": "^v2.0.1",
"phpunit/phpunit": "^10.4",
"squizlabs/php_codesniffer": "^3.5.4"
},
"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": {
"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"
]
}
}