-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
33 lines (33 loc) · 952 Bytes
/
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
{
"name": "magento/module-upward-connector",
"description": "Magento module used for routing all frontend requests through UPWARD-PHP.",
"config": {
"sort-packages": true
},
"require": {
"php": "~8.1.0||~8.2.0||~8.3.0",
"magento/framework": "*",
"magento/upward": "*",
"magento/module-config": "*",
"magento/module-store": "*",
"magento/module-catalog": "*",
"magento/module-cms": "*",
"magento/module-url-rewrite": "*",
"magento/module-url-rewrite-graph-ql": "*",
"magento/module-catalog-url-rewrite-graph-ql": "*",
"yireo/magento2-disable-service-worker-in-admin": "^0.0.2"
},
"type": "magento2-module",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Magento\\UpwardConnector\\": ""
}
}
}