Created
September 16, 2015 14:03
-
-
Save mhauri/0bd0e0231b1f81d9fd00 to your computer and use it in GitHub Desktop.
Magento Demo composer.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"minimum-stability":"dev", | |
"repositories": [ | |
{ | |
"type": "vcs", | |
"url": "ssh://[email protected]: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