Skip to content

Instantly share code, notes, and snippets.

@danrcoull
Last active October 25, 2016 19:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danrcoull/9a775cdbd354867223d4c9485328cf33 to your computer and use it in GitHub Desktop.
Save danrcoull/9a775cdbd354867223d4c9485328cf33 to your computer and use it in GitHub Desktop.
Install Magento 1.X - and Base level Modules via Modman using composer
#!/usr/bash
composer install
{
"name": "gremlintech/basecomposer",
"minimum-stability": "dev",
"authors": [
{
"name": "Daniel Coull",
"email": "ttechitsolutions@gmail.com"
}
],
"scripts": {
"post-install-cmd": [
"modman init",
"touch .modman/.basedir",
"echo http > .modman/.basedir",
"modman deploy-all"
],
"post-update-cmd": [
"touch .modman/.basedir",
"echo http > .modman/.basedir",
"modman deploy-all"
]
},
"repositories": {
"installer-magento-core": {
"type": "git",
"url": "https://github.com/AydinHassan/magento-core-composer-installer"
},
"magento": {
"type":"git",
"url":"https://github.com/firegento/magento"
},
"firegento": {
"type": "composer",
"url": "https://packages.firegento.com"
}
},
"require": {
"php": ">=5.4",
"magento-hackathon/magento-composer-installer": "~3.0",
"aydin-hassan/magento-core-composer-installer": "~1.2",
"aoepeople/composer-installers": "*",
"firegento/magento": "~1.9.2.4",
"ecomdev/composer_autoload" : "*",
"ecomdev/ecomdev_phpunit" : "*",
"firegento/psr0autoloader" : "*",
"n98/magerun" : "*",
},
"require-dev": {
"aoepeople/aoe_profiler" : "*",
"aoepeople/aoe_templatehints":"*",
"avstudnitz/missing-translations":"*",
"firegento/debug":"*",
"hackathon/magegitinfo":"*",
"liip/magento-xhprof" : "*",
"magento-hackathon/hackathon_magetrashapp":"*",
"phpro/remote-media" : "*"
},
"config": {
"secure-http": false,
"discard_changes": true,
"bin-dir": "bin/"
},
"autoload": {
"psr-0": {
"": [
"http/app",
"http/app/code/local",
"http/app/code/community",
"http/app/code/core",
"http/lib"
],
"Mage" : "http/app/code/core"
}
},
"extra": {
"magento-root-dir": "http",
"auto-append-gitignore": true,
"magento-deploystrategy": "copy",
"magento-force": true,
"installer-paths": {
"http": ["type:magento-source"],
".modman/{$vendor}_{$name}/": ["type:magento-module"]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment