Skip to content

Commit 1d16054

Browse files
committed
magento/graphql-ce#685: Extract logic related to customer from DownloadableGraphQl module into new one
- removed composer dependency because of DependencyTest bug MC-19635
1 parent 13bb280 commit 1d16054

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

app/code/Magento/CustomerDownloadableGraphQl/composer.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
"type": "magento2-module",
55
"require": {
66
"php": "~7.1.3||~7.2.0||~7.3.0",
7-
"magento/module-catalog": "*",
8-
"magento/module-downloadable": "*",
97
"magento/module-downloadable-graph-ql": "*",
108
"magento/module-graph-ql": "*",
119
"magento/framework": "*"

app/code/Magento/CustomerDownloadableGraphQl/etc/module.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
99
<module name="Magento_CustomerDownloadableGraphQl" >
1010
<sequence>
11+
<module name="Magento_Catalog"/>
12+
<module name="Magento_Downloadable"/>
1113
<module name="Magento_GraphQl"/>
1214
<module name="Magento_CatalogGraphQl"/>
1315
<module name="Magento_DownloadableGraphQl"/>

app/code/Magento/DownloadableGraphQl/composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"php": "~7.1.3||~7.2.0||~7.3.0",
77
"magento/module-catalog": "*",
88
"magento/module-downloadable": "*",
9-
"magento/module-graph-ql": "*",
109
"magento/module-quote": "*",
1110
"magento/module-quote-graph-ql": "*",
1211
"magento/framework": "*"

app/code/Magento/DownloadableGraphQl/etc/module.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
99
<module name="Magento_DownloadableGraphQl" >
1010
<sequence>
11+
<module name="Magento_GraphQl"/>
1112
<module name="Magento_Catalog"/>
1213
<module name="Magento_CatalogGraphQl"/>
1314
<module name="Magento_QuoteGraphQl"/>

0 commit comments

Comments
 (0)