yireo / magento1-xmllayouthints
Show XML layout names within frontend
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:magento-module
Requires
- php: >=5.4.0
Requires (Dev)
- composer/composer: *@dev
- phpunit/phpunit: *
This package is auto-updated.
Last update: 2024-10-29 05:22:23 UTC
README
Installation
You can install this module in various ways:
-
Download the MagentoConnect package from our site and upload it into your own Magento Downloader application.
-
Download the Magento source archive from our site, extract the files and upload the files to your Magento root. Make sure to flush the Magento cache. Make sure to logout once you're done.
-
Use modman to install the git repository for you:
modman init modman clone https://github.com/yireo/Yireo_XmlLayoutHints modman update Yireo_XmlLayoutHints
-
Use composer. See below.
Instructions for using composer
Use composer to install this extension. First make sure to initialize composer with the right settings:
composer -n init
composer install --no-dev
Next, modify your local composer.json file:
{
"require": {
"yireo/magento1-xmllayouthints": "dev-master",
"magento-hackathon/magento-composer-installer": "*"
},
"repositories":[
{
"type":"composer",
"url":"https://packages.firegento.com"
},
{
"type":"composer",
"url":"https://satis.yireo.com"
}
],
"extra":{
"magento-root-dir":"/path/to/magento",
"magento-deploystrategy":"copy"
}
}
Make sure to set the magento-root-dir
properly. Test this by running:
composer update --no-dev
Done.