Skip to content

Commit

Permalink
Updated composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
paales committed Jun 9, 2016
1 parent b13b52e commit 72bd065
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 33 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Magento 2 Advanced Template Hints module
# H&O Magento 2 Advanced Template Hints module

Ho_Templatehints extends the default Magento template hints.

Expand All @@ -10,7 +10,8 @@ Ho_Templatehints extends the default Magento template hints.

## Installation

todo
php bin/magento module:enable Ho_Templatehints
php bin/magento setup:upgrade

## Usage
1. Set your Magento 2 installation to developer mode.
Expand All @@ -30,8 +31,6 @@ hint($0)

![Console $0](docs/console.gif)

## Todo
Show hints directly from the console in the devtools.

## Inner Workings
The module adds an additional html-attribute to the outer most element of a layout element.
Expand Down
62 changes: 33 additions & 29 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,37 @@
{
"name": "ho/module-templatehints",
"description": "",
"require": {
"php": "~5.5.0|~5.6.0|~7.0.0",

"magento/magento-composer-installer": "*"
},
"suggest": {

},
"type": "magento2-module",
"version": "0.1.0",
"license": [

"name": "ho/module-templatehints",
"description": "H&O Magento 2 Advanced Template Hints module",
"homepage": "https://github.com/ho-nl/magento2-Ho_Templatehints",
"authors": [
{
"name": "Paul Hachmang - H&O",
"email": "paul@h-o.nl"
}
],
"require": {
"php": "~5.5.0|~5.6.0|~7.0.0",
"magento/magento-composer-installer": "*"
},
"suggest": {
},
"type": "magento2-module",
"version": "0.1.0",
"license": [
],
"autoload": {
"files": [
"registration.php"
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Ho\\Templatehints\\": ""
}
},
"extra": {
"map": [
[
"*",
"Ho/Templatehints"
]
]
"psr-4": {
"Ho\\Templatehints\\": ""
}
},
"extra": {
"map": [
[
"*",
"Ho/Templatehints"
]
]
}
}

0 comments on commit 72bd065

Please sign in to comment.