dev-master
9999999-devPHP Library for fast work on Magento products
MIT
The Requires
The Development Requires
- phpunit/phpunit 5.5.*
- phpunit/php-code-coverage *
- doctrine/annotations *
- robmorgan/phinx *
- usmanhalalit/pixie *
- php-di/php-di *
Wallogit.com
2017 © Pedro Peláez
PHP Library for fast work on Magento products
This is a library for fast work with magento products. At typical project with Magento 1.9.x, speed was increased in 10 times., (*2)
Not recommended to use it at production., (*3)
You can work with products without magento codebase itself, database with magento tables is enough., (*4)
Fastmag doesn't dispatch events., (*5)
Import/export products, manage big scope of products and so on., (*6)
If your magento have Magento Composer Autoload installed already then you can install Fastmag via composer and it will work fine. Otherwise you can install Magento Composer Autoload via composer first or install Fastmag via modman., (*7)
Modman will check have you required Autoload or not and will install it., (*8)
Add to require block at your composer.json file following line:, (*9)
"codedropcc/fastmag": "dev-master"
So it will at least looks like, (*10)
{
"require": {
"codedropcc/fastmag": "dev-master"
}
}
Below composer.json example with magento composer autoload:, (*11)
{
"require": {
"codedropcc/fastmag": "dev-master",
"magento-hackathon/magento-composer-installer": "*",
"romantomchak/magento-composer-autoload": "*"
},
"extra": {
"magento-root-dir": ".",
"with-bootstrap-patch": false
}
}
After that just run composer install or composer update
That's all, Fastmag is installed and ready to work., (*12)
modman init.modman clone https://github.com/codedropcc/fastmag.git command.Sometimes OPcache or APC should be cleaned after installation., (*13)
PHP Library for fast work on Magento products
MIT