-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json.standalone
50 lines (50 loc) · 1.19 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
50
{
"name": "magento/message-broker",
"type": "project",
"repositories": {
"repo-magento": {
"type": "composer",
"url": "https://repo.magento.com/"
}
},
"extra": {
"magento-root-dir": "./"
},
"require": {
"magento/module-storefront-cache": "*",
"magento/module-storefront-di": "*",
"magento/module-storefront-deploy": "*",
"magento/module-storefront-framework": "*",
"google/protobuf": "^3.11",
"grpc/grpc": "^1.27",
"spiral/php-grpc": "^1.1",
"magento/module-amqp": "*",
"magento/module-message-queue": "*"
},
"autoload": {
"psr-4": {
"Magento\\Framework\\": "lib/internal/Magento/Framework/",
"Magento\\Setup\\": "setup/src/Magento/Setup/",
"Magento\\": "app/code/Magento/",
"Zend\\Mvc\\Controller\\": "setup/src/Zend/Mvc/Controller/"
},
"psr-0": {
"": [
"app/code/",
"generated/code/"
]
},
"files": [
"app/etc/message_broker/NonComposerComponentRegistration.php"
],
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"exclude-from-classmap": [
"**/dev/**",
"**/update/**",
"**/Test/**"
]
}
}