Created
May 12, 2016 16:25
-
-
Save lvampa/dd55b60c12248dd4dfd349374c8f01ec to your computer and use it in GitHub Desktop.
Base Magento Composer Config with Artifact
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
| { | |
| "name": "demo", | |
| "description": "demo here", | |
| "license": "proprietary", | |
| "homepage": "https://github.com/abdcon02", | |
| "repositories": [ | |
| { "type": "composer", "url": "https://packages.firegento.com" }, | |
| { "type": "artifact", "url": "./archive" } | |
| ], | |
| "require": { | |
| "magento-hackathon/magento-composer-installer": "~3.0", | |
| "aydin-hassan/magento-core-composer-installer": "~1.0", | |
| "vendor/package": "*" #just make sure archive looks like vendor_package-version.zip | |
| }, | |
| "extra": { | |
| "magento-root-dir": "./", | |
| "auto-append-gitignore": true, | |
| "magento-force": true | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment