Skip to content

Commit c0694ed

Browse files
ENGCOM-7702: magento/28577_undeclared_webapi_dependency-fix #28666
- Merge Pull Request #28666 from sasha19957099/magento2:28577_GraphQL_module_has_undeclared_dependency_on_Webapi_module - Merged commits: 1. e1accde 2. 392cf22 3. f4f4773 4. 623f69d
2 parents c43d763 + 623f69d commit c0694ed

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

app/code/Magento/GraphQl/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"require": {
66
"php": "~7.3.0||~7.4.0",
77
"magento/module-eav": "*",
8-
"magento/framework": "*"
8+
"magento/framework": "*",
9+
"magento/module-webapi": "*"
910
},
1011
"suggest": {
11-
"magento/module-webapi": "*",
1212
"magento/module-graph-ql-cache": "*"
1313
},
1414
"license": [

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
/**
3+
* Copyright © Magento, Inc. All rights reserved.
4+
* See COPYING.txt for license details.
5+
*/
6+
declare(strict_types=1);
7+
8+
return [
9+
'Magento\GraphQl' => [
10+
'Magento\Webapi' => 'Magento\Webapi'
11+
]
12+
];

0 commit comments

Comments
 (0)