-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrated to exact module dependency, over from magento version specif…
…ication. Supports 2.3.5.
- Loading branch information
1 parent
8ae780d
commit f74f133
Showing
9 changed files
with
58 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,17 @@ | ||
{ | ||
"name": "scandipwa/cms-graphql", | ||
"description": "ScandiPWA Graphql extension for CMS page", | ||
"keywords": [ | ||
"magento2", | ||
"scandipwa", | ||
"pwa" | ||
], | ||
"type": "magento2-module", | ||
"license": [ | ||
"OSL-3.0" | ||
], | ||
"support": { | ||
"email": "[email protected]" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Yefim Butrameev", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"magento/module-cms-graph-ql": "*" | ||
"magento/framework": "*", | ||
"magento/module-store": "*", | ||
"magento/module-variable": "*", | ||
"magento/module-widget": "*", | ||
"magento/module-cms": "*", | ||
"magento/module-cms-graph-ql": "^100.3" | ||
}, | ||
"autoload": { | ||
"files": [ | ||
|
@@ -30,4 +21,4 @@ | |
"ScandiPWA\\CmsGraphQl\\": "src/" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,23 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
/** | ||
* ScandiPWA - Progressive Web App for Magento | ||
* | ||
* Copyright © Scandiweb, Inc. All rights reserved. | ||
* See LICENSE for license details. | ||
* | ||
* @license OSL-3.0 (Open Software License ("OSL") v. 3.0) | ||
* @link https://github.com/scandipwa/quote-graphql | ||
*/ | ||
--> | ||
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd"> | ||
<module name="ScandiPWA_CmsGraphQl" setup_version="0.1.0"> | ||
<module name="ScandiPWA_CmsGraphQl"> | ||
<sequence> | ||
<module name="Magento_CmsGraphQl"/> | ||
<module name="Magento_GraphQl"/> | ||
<module name="Magento_Store"/> | ||
<module name="Magento_Variable"/> | ||
<module name="Magento_Widget"/> | ||
<module name="Magento_CmsGraphQl"/> | ||
<module name="Magento_Cms"/> | ||
</sequence> | ||
</module> | ||
</config> | ||
</config> |