websolute / magento-m2if-wrapper
This is a wrapper to call m2if commands programmatically
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 0
Type:magento2-module
Requires
- magento/framework: *
- techdivision/import-adapter-custom: dev-master as 1.0.0
- techdivision/import-cli-simple: ^3.8
README
Installation
Install the composer patch system:
composer require cweagans/composer-patches:^1.6
Then into your compose.json file the following extra data:
"extra": {
"patches": {
"websolute/m2if-wrapper": {
"m2ifWrapper.patch ": "m2ifSetTokens.patch"
}
}
}
How to use
Just inject the following manager:
\Websolute\M2ifWrapper\Model\Wrapper $wrapper
Then use the execute(array $parameters, OutputInterface $output)
method to run m2if programmatically:
// \Symfony\Component\Console\Output\Output $outputLogger
$parameters = [
'--source-dir=var/importexport',
'--parameterX'
];
$exitCode = $this->wrapper->execute($parameters, $outputLogger);