-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 1.83 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
{
"name": "magento/project-community-edition",
"description": "eCommerce Platform for Growth (Community Edition)",
"type": "project",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"version": "2.4.7-p3",
"require": {
"avstudnitz/scopehint2": "^1.1",
"cweagans/composer-patches": "^1.7",
"magefan/module-blog": "^2.10",
"magento/composer-dependency-version-audit-plugin": "~0.1",
"magento/composer-root-update-plugin": "~2.0",
"magento/product-community-edition": "2.4.7-p3",
"mollie/magento2": "^2.41"
},
"autoload": {
"exclude-from-classmap": [
"**/dev/**",
"**/update/**",
"**/Test/**"
],
"files": [
"app/etc/NonComposerComponentRegistration.php"
],
"psr-0": {
"": [
"app/code/",
"generated/code/"
]
},
"psr-4": {
"Magento\\": "app/code/Magento/",
"Magento\\Framework\\": "lib/internal/Magento/Framework/",
"Magento\\Setup\\": "setup/src/Magento/Setup/"
}
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"hypernode/deploy-configuration": "^3.1",
"magento/magento-coding-standard": "*",
"phpstan/phpstan": "~1.2.0",
"phpunit/phpunit": "~9.5.0",
"squizlabs/php_codesniffer": "~3.6.0",
"symfony/finder": "^5.2"
},
"prefer-stable": true,
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"laminas/laminas-dependency-plugin": true,
"magento/*": true,
"cweagans/composer-patches": true
},
"preferred-install": "dist",
"sort-packages": true
},
"repositories": [
{
"type": "composer",
"url": "https://mage-os.hypernode.com/mirror/"
}
],
"extra": {
"magento-force": "override",
"composer-exit-on-patch-failure": true
}
}