https://github.com/ecomdev/ecomdev_composerautoload
Extension that allows using of composer components inside of your project.
https://github.com/ecomdev/ecomdev_composerautoload
Last synced: 12 months ago
JSON representation
Extension that allows using of composer components inside of your project.
- Host: GitHub
- URL: https://github.com/ecomdev/ecomdev_composerautoload
- Owner: EcomDev
- License: osl-3.0
- Created: 2014-10-28T08:11:59.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-07-27T09:27:13.000Z (over 9 years ago)
- Last Synced: 2025-03-25T05:04:09.022Z (about 1 year ago)
- Language: PHP
- Size: 230 KB
- Stars: 8
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
Magento Composer Autoloader
===========================
Implemented by overriding the core/cache model in the first configuration merge stage. So it is always available, no matter how Magento is instantiated.
If you want to disable a module, you have to change name of `app/etc/ecomdev_composerautoload.xml` to something not detectable by Magento.
Does not conflict with any custom implementation of Magento autoloader, since only wraps existing autoloader with suppress warning.
System Requirements
-------------------
* PHP 5.3 and above
* Magento 1.4.x and above
Build Status
------------
* Latest Release: [](https://travis-ci.org/EcomDev/EcomDev_ComposerAutoload)
* Development Branch: [](https://travis-ci.org/EcomDev/EcomDev_ComposerAutoload)
* Code Coverage: [](https://coveralls.io/r/EcomDev/EcomDev_ComposerAutoload)
Installation
------------
Install module via composer:
```json
{
"require": {
"ecomdev/composer_autoload": "*"
},
"repositories": [
{
"type": "composer",
"url": "http://packages.firegento.com"
}
]
}
```
Contributions
-------------
If you want to take a part in improving our extension please create branches based on develop one.
###Create your contribution branch:
$ git checkout -b [your-name]/[feature] develop
Then submit them for pull request.