├── README.md └── composer.json /README.md: -------------------------------------------------------------------------------- 1 | # Magento Community Edition 2 | 3 | 4 | **/// THIS REPOSITORY IS DEPREACTED ///** 5 | 6 | 1.9.4.1 will be the last version update. Please switch over to [OpenMage](https://openmage.github.io/magento-lts/)! 7 | 8 | Either to the [magento-mirror](https://github.com/OpenMage/magento-mirror) (which is the same as this repo) or to [magento-lts](https://github.com/OpenMage/magento-lts), which is a repository with community patches. 9 | 10 | **/// THIS REPOSITORY IS DEPREACTED ///** 11 | 12 | --- 13 | 14 | Firegento Magento Community Magento-1.x Mirror Github Repository with Patches. 15 | 16 | [Contact us](https://firegento.com/contact/) 17 | 18 | - [available magento versions](https://github.com/firegento/magento/releases) 19 | - [an overview of all patches](https://github.com/brentwpeterson/magento-patches) 20 | 21 | ## Installation via Composer 22 | 23 | If you do not know what Composer is, please read [this](https://getcomposer.org/doc/00-intro.md) first. 24 | 25 | To generate `composer.json` and install magento for the first time run: 26 | 27 | ``` 28 | composer require magento-hackathon/magento-composer-installer ~3.0 29 | composer require aydin-hassan/magento-core-composer-installer ~1.2 30 | composer require firegento/magento ~1.9.4.1 31 | ``` 32 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "firegento/magento", 3 | "type": "magento-core", 4 | "license": ["OSL-3.0", "AFL-3.0"], 5 | "description": "Magento CE" 6 | } 7 | --------------------------------------------------------------------------------