Skip to content

Instantly share code, notes, and snippets.

@mhauri
Created September 16, 2015 14:03
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 mhauri/0bd0e0231b1f81d9fd00 to your computer and use it in GitHub Desktop.
Save mhauri/0bd0e0231b1f81d9fd00 to your computer and use it in GitHub Desktop.
Magento Demo composer.json
{
"minimum-stability":"dev",
"repositories": [
{
"type": "vcs",
"url": "ssh://git@stash.staempfli.com:7999/stmagento/demotheme.git"
},
{
"type": "package",
"package": {
"name": "magento/ce",
"version": "1.9.1.0",
"type": "magento-source",
"dist": {
"url": "http://www.magentocommerce.com/downloads/assets/1.9.1.0/magento-1.9.1.0.tar.gz",
"type": "tar"
}
}
}
],
"extra": {
"installer-paths": {
"magento": ["type:magento-source"],
"magento/.modman/{$name}/": ["type:magento-module"]
}
},
"require": {
"magento/ce": "1.9.1.0",
"aoepeople/composer-installers": "dev-master#9e8c507177",
"stmagento/demotheme": "dev-master"
},
"scripts": {
"post-install-cmd": [
"cd magento/ && modman deploy-all"
],
"post-update-cmd": [
"cd magento/ && modman deploy-all"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment