-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json.standalone
executable file
·49 lines (49 loc) · 1.3 KB
/
composer.json.standalone
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
{
"name": "magento/storefront-product-reviews-ce",
"type": "project",
"repositories": {
"repo-magento": {
"type": "composer",
"url": "https://repo.magento.com/"
},
"module-grpc": {
"type": "git",
"url": "https://github.com/magento/module-grpc"
}
},
"extra": {
"magento-root-dir": "./"
},
"require": {
"magento/module-storefront-storage": "*",
"magento/module-storefront-framework": "*",
"magento/module-storefront-cache": "*",
"magento/module-storefront-di": "*",
"magento/module-storefront-deploy": "*",
"magento/module-grpc": "dev-main",
"elasticsearch/elasticsearch": "^7.9.0"
},
"autoload": {
"psr-4": {
"Magento\\": "app/code/Magento/"
},
"psr-0": {
"": [
"app/code/",
"generated/code/"
]
},
"files": [
"app/etc/storefront_product_review/NonComposerComponentRegistration.php"
],
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"exclude-from-classmap": [
"**/dev/**",
"**/update/**",
"**/Test/**"
]
}
}