-
Notifications
You must be signed in to change notification settings - Fork 204
/
composer.json
106 lines (106 loc) · 3.39 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
{
"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": "^1.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-unified-namespace-generator": "dev-b-8.0.x",
"phpmailer/phpmailer": "^6.5.0",
"psr/container": "^1.1.1",
"symfony/config": "^6.4",
"symfony/console": "^6.4",
"symfony/dependency-injection": "^6.4",
"symfony/dotenv": "^6.4",
"symfony/event-dispatcher": "^6.4",
"symfony/expression-language": "^6.4",
"symfony/filesystem": "^6.4",
"symfony/finder": "^6.4",
"symfony/lock": "^6.4",
"symfony/mime": "^6.4",
"symfony/string": "^6.4",
"symfony/yaml": "^6.4"
},
"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": "^2.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": "^2.0.1",
"phpunit/phpunit": "^11.4",
"squizlabs/php_codesniffer": "^3.5.4",
"symfony/browser-kit": "^6.4",
"symfony/http-client": "^6.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"
]
}
}