Last active
November 26, 2015 11:22
-
-
Save caasig/0c713585c691e4a6c399 to your computer and use it in GitHub Desktop.
Starter composer.json for a Magento 1 project
This file contains 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
{ | |
"name": "vendor/your-project", | |
"description": "Your Awesome Project", | |
"require": { | |
"aydin-hassan/magento-core-composer-installer": "^1.3", | |
"magento/magento": "1.9.2.2", | |
"magento-hackathon/magento-composer-installer": "3.0.*" | |
}, | |
"repositories": [ | |
{ | |
"type": "composer", | |
"url": "http://packages.firegento.com" | |
}, | |
{ | |
"type": "vcs", | |
"url": "[email protected]:AydinHassan/magento-community.git" | |
} | |
], | |
"extra": { | |
"magento-root-dir": ".", | |
"magento-core-deploy": { | |
"excludes": [ | |
"composer.json", | |
"composer.lock" | |
] | |
}, | |
"auto-append-gitignore": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment