diff --git a/README.md b/README.md index 9be6288..499463a 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Each of these commands should be run from the command line at the Magento 2 root First, add this repository to your `composer.json` by running the following. ``` # add this repository to your composer.json -$ composer config repositories.magento2-configscopehints vcs https://github.com/ericthehacker/magento2-configscopehints.git +$ composer config repositories.magento2-configscopehints git https://github.com/ericthehacker/magento2-configscopehints.git # require module $ composer require ericthehacker/magento2-configscopehints @@ -56,4 +56,4 @@ Clicking on the notification bulb displays a detailed list of the exact scope(s) ## Compatibility and Technical Notes -This module was written and tested against version [0.74.0-beta4](https://github.com/magento/magento2/releases/tag/0.74.0-beta4). The hints are accomplished using intercepters, so there should be no compatibility concerns ([unlike Magento 1](https://github.com/ericthehacker/magento-configscopehints#rewrites)). This version is post-RC2, so the intercepters API should stable at this point. +This module was written and tested against version [2.0.0-rc](https://github.com/magento/magento2/releases/tag/2.0.0-rc). The hints are accomplished using intercepters, so there should be no compatibility concerns ([unlike Magento 1](https://github.com/ericthehacker/magento-configscopehints#rewrites)). This version is post-RC, so the intercepters API should stable at this point. diff --git a/composer.json b/composer.json index a7493c0..02e8f9b 100644 --- a/composer.json +++ b/composer.json @@ -2,23 +2,26 @@ "name": "ericthehacker/magento2-configscopehints", "description": "Magento 2 store config override hints module", "require": { - "magento/magento-composer-installer": "*" + "magento/framework": "*" }, "type": "magento2-module", - "version": "2.0", - "extra": { - "map": [ - [ - "*", - "EW/ConfigScopeHints" - ] - ] + "version": "2.1", + "autoload": { + "files": [ "registration.php" ], + "psr-4": { + "EW\\ConfigScopeHints\\": "" + } }, "authors": [ { "name": "Eric Wiese", "homepage": "https://ericwie.se/", "role": "Developer" + }, + { + "name": "Erik Hansen", + "homepage": "https://www.classyllama.com/", + "role": "Developer" } ] -} \ No newline at end of file +} diff --git a/registration.php b/registration.php new file mode 100644 index 0000000..d90a8ab --- /dev/null +++ b/registration.php @@ -0,0 +1,7 @@ +