From 03a7b20e25094c78ff46ce5085a05a382d54dc4b Mon Sep 17 00:00:00 2001 From: Andrada Ciobotaru <67596809+andrada-human-element@users.noreply.github.com> Date: Tue, 13 Apr 2021 19:31:25 +0300 Subject: [PATCH] composer.json composer.json file to be able to add the module via composer --- Magento_BundleConfig/composer.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Magento_BundleConfig/composer.json diff --git a/Magento_BundleConfig/composer.json b/Magento_BundleConfig/composer.json new file mode 100644 index 0000000..e7c031d --- /dev/null +++ b/Magento_BundleConfig/composer.json @@ -0,0 +1,21 @@ +{ + "name": "magento/module-bundle-config", + "version": "0.0.1", + "description": "Magento module helping with javascript bundles config using chrome extension m2-devtools", + "type": "magento2-module", + "require": { + "magento/framework": "*" + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\BundleConfig\\": "" + } + } +}