rgranadino / mage2_vagrant

Simple Magento 2 Vagrant Box
249 stars 68 forks source link

404 for magento-composer-1.0.2.0.zip #46

Closed TheBlogHouse closed 8 years ago

TheBlogHouse commented 8 years ago

Great work but when trying to get this running the first time I'm getting a 404 for the following file when trying to run composer install:

https://repo.magento.com/archives/magento/composer/magento-composer-1.0.2.0.zip

therouv commented 8 years ago

Hi @TheBlogHouse you need to add your Magento Connect login credentials to your composer auth.json (~/.composer/auth.json), e.g. like this:

{
    "http-basic": {
        "repo.magento.com": {
            "username": "MAGENTO_USER",
            "password": "MAGENTO_PASS"
        }
    }
}
TheBlogHouse commented 8 years ago

Thanks