Skip to content

Commit

Permalink
Add support for Magento 2.0.0-RC
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Hansen committed Nov 16, 2015
1 parent 9a58cc8 commit 5ade3d9
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
23 changes: 13 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
]
}
}
7 changes: 7 additions & 0 deletions registration.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php

\Magento\Framework\Component\ComponentRegistrar::register(
\Magento\Framework\Component\ComponentRegistrar::MODULE,
'EW_ConfigScopeHints',
__DIR__
);

0 comments on commit 5ade3d9

Please sign in to comment.