dev-master
9999999-devFramework for Magento initialization and state recovery.
MIT
The Requires
- irs/fso dev-master
- php >=5.3,<5.7
The Development Requires
by Vadim Kusakin
magento state initialization
Wallogit.com
2017 © Pedro Peláez
Framework for Magento initialization and state recovery.
This framework provides API for Magento installation, initialization and state recovery. Framework was tested on EE 1.11 and should work on all versions older than 1.9., (*2)
To install the framework with Composer add following lines into you composer.json:, (*3)
{
"require": {
"irs/magento-initializer": "dev-master"
}
}
Then run composer install., (*4)
The framework defines four core interfaces: InstallerInterface, InitializerInterface,
StateInterface, DbInterface and four implementations of these interfaces., (*5)
Generic installer initializes Magento config, var, media structures in target directory; creates index.php that runs Magento from source directory with created config, var, media; adds test database to configuration and installs Magento into it., (*6)
Credentias to admin panel will be
admin:123123qa., (*7)
Is a class for changing Magento run parameters and state managenet. It can be used for:, (*8)
GenericInstaller; The initializer uses DbInterface to create database dump and restore database from dump. Now only MySQL dumper
is implemented; it uses mysqldump utility for dump creation and mysql for restoring., (*9)
This class is used by GenericInitializer to save state into file. Saves databse dump, media and var directories
as a Zip archive., (*10)
Framework for Magento initialization and state recovery.
MIT
magento state initialization