A Magento 1.9 extension that adds the ability to tag orders and customers.
In order to pull in the module via composer you will need to create a composer.json file in your project root folder.
You need to add following lines to your project's composer.json to tell Composer to check out the module as well as magento-composer-installer to install the module.
Make sure to set magento-root-dir to the directory where your Magento resides (relative to your project's composer.json).
{
"require": {
"magento-hackathon/magento-composer-installer": "*",
"slicvic/magento-tagger": "master"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/magento-hackathon/magento-composer-installer"
},
{
"type": "vcs",
"url": "https://github.com/slicvic/magento-tagger.git"
}
],
"extra":{
"magento-root-dir": ".",
"magento-deploystrategy": "copy"
}
}









