Skip to content

Commit

Permalink
Merge pull request #35 from run-as-root/fix-module-dependencies
Browse files Browse the repository at this point in the history
fix module dependencies
  • Loading branch information
VladyslavSikailo authored Jul 7, 2023
2 parents da33e34 + 19f509d commit 0fb34d9
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
12 changes: 12 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,18 @@
}
],
"require": {
"magento/framework": "*",
"magento/module-payment": "*",
"magento/module-eav": "*",
"magento/module-cron": "*",
"magento/module-cms": "*",
"magento/module-shipping": "*",
"magento/module-catalog": "*",
"magento/module-sales": "*",
"laminas/laminas-http": "*",
"magento/module-config": "*",
"magento/module-backend": "*",
"guzzlehttp/guzzle": "*",
"symfony/console": "*",
"psr/log": "*",
"monolog/monolog": "*",
Expand Down
14 changes: 13 additions & 1 deletion src/etc/module.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="RunAsRoot_PrometheusExporter">

<sequence>
<module name="Magento_Payment" />
<module name="Magento_Store" />
<module name="Magento_Eav" />
<module name="Magento_Cron" />
<module name="Magento_Cms" />
<module name="Magento_Indexer" />
<module name="Magento_Shipping" />
<module name="Magento_Catalog" />
<module name="Magento_Sales" />
<module name="Magento_Config" />
<module name="Magento_Backend" />
</sequence>
</module>
</config>

0 comments on commit 0fb34d9

Please sign in to comment.