-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
106 lines (106 loc) · 3.41 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": "opengento/magento2-base-light",
"description": "Magento 2 base project lighter version.",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Thomas Klein",
"email": "[email protected]"
}
],
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "stable",
"require": {
"colinmollenhour/cache-backend-file": "*",
"colinmollenhour/cache-backend-redis": "*",
"colinmollenhour/credis": "*",
"colinmollenhour/php-redis-session-abstract": "*",
"magento/composer-root-update-plugin": "*",
"magento/framework": "*",
"magento/magento2-base": "*",
"magento/module-backend": "*",
"magento/module-catalog": "*",
"magento/module-catalog-inventory": "*",
"magento/module-catalog-rule": "*",
"magento/module-catalog-search": "*",
"magento/module-catalog-url-rewrite": "*",
"magento/module-checkout": "*",
"magento/module-cms": "*",
"magento/module-cms-url-rewrite": "*",
"magento/module-config": "*",
"magento/module-contact": "*",
"magento/module-cookie": "^100.4",
"magento/module-cron": "*",
"magento/module-customer": "*",
"magento/module-deploy": "*",
"magento/module-developer": "*",
"magento/module-directory": "*",
"magento/module-eav": "*",
"magento/module-elasticsearch-7": "*",
"magento/module-email": "*",
"magento/module-indexer": "*",
"magento/module-integration": "*",
"magento/module-newsletter": "*",
"magento/module-page-cache": "*",
"magento/module-payment": "*",
"magento/module-product-video": "^100.4",
"magento/module-quote": "*",
"magento/module-require-js": "*",
"magento/module-robots": "*",
"magento/module-rule": "*",
"magento/module-sales": "*",
"magento/module-sales-rule": "*",
"magento/module-sales-sequence": "*",
"magento/module-search": "*",
"magento/module-security": "*",
"magento/module-shipping": "*",
"magento/module-sitemap": "*",
"magento/module-store": "*",
"magento/module-tax": "*",
"magento/module-theme": "*",
"magento/module-tinymce-3": "*",
"magento/module-translation": "*",
"magento/module-ui": "*",
"magento/module-url-rewrite": "*",
"magento/module-user": "*",
"magento/module-webapi": "*",
"magento/theme-adminhtml-backend": "*",
"magento/theme-frontend-luma": "*"
},
"require-dev": {
"roave/security-advisories": "dev-master"
},
"autoload": {
"psr-4": {
"Magento\\Setup\\": "setup/src/Magento/Setup/",
"Zend\\Mvc\\Controller\\": "setup/src/Zend/Mvc/Controller/"
},
"psr-0": {
"": [
"app/code/",
"generated/code/"
]
},
"files": [
"app/etc/NonComposerComponentRegistration.php"
],
"exclude-from-classmap": [
"**/dev/**",
"**/update/**",
"**/Test/**"
]
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"extra": {
"magento-force": "override"
}
}