techdivision / import-cli-magento
Magento CLI extension that provides single-threaded Magento 2 importing functionality based on M2IF
Requires
- techdivision/import-cli-simple: 1.0.0-beta21
Requires (Dev)
- appserver-io/robo-tasks: 0.2.0
- consolidation/log: ~1.0
- consolidation/robo: ~1.0
- henrikbjorn/lurker: ~1.0
- phpmd/phpmd: 2.5.*
- phpunit/phpunit: 4.4.*
- sebastian/phpcpd: 2.0.*
- squizlabs/php_codesniffer: 2.2.*
- tomzx/php-semver-checker: 0.9.*
This package is auto-updated.
Last update: 2024-10-27 07:44:41 UTC
README
Development
To make the development process as easy as possible, we've added some basic Robo commands.
General Configuration
Robo supports a configuration file robo.yml
, that has to be located in the root directory of the extension.
By default, the file contains the following default configurations, that probably have to be customized to
your needs
dirs: deploy: /opt/appserver/webapps/magento2-ce-2.1.7 docker: target-container: appserver-1.1.4-magento dirs: deploy: /opt/appserver/webapps/magento2-ce-2.1.7 src: /root/Workspace/import-cli-magento/src dest: webapps/magento2-ce-2.1.7
Sync Sources
To synchronize your local sources with the Magento 2 instance inside the Docker container, simply execute
$ vendor/bin/robo docker:sync
Execute Magento Commands
Another command allows you to invoke the magento script inside the Magento root directory of the docker container. Simply pass
the Magento command, prefixed with a --
, e. g.
$ vendor/bin/robo docker:magento -- setup:upgrade
Execute Composer Commands
Same works for composer. Simply pass the command and the arguments/options, prefixed with a --
e. g.
$ vendor/bin/robo docker:composer -- update --no-dev
Installation
The general development process is optimized to work with Docker. Therefore we'll assume a running Docker container with a working Magento 2 instance inside. If not available or you're not sure how to setup one, have a look at the appserver.io tutorial.
Option 1 - Using the Robo command
$ vendor/bin/robo docker:composer require techdivision/import-cli-magento:dev-master
This is the preferred option.
Option 2 - Direct Installation from inside the container
Open a shell in your Docker container
$ docker exec -ti appserver-1.1.4-magento bash
Then use your favorite editor, e. g. vim, to open the composer.json of your Magento 2 installation and add the extension to the required dependencies like
{ ... "require": { ... "techdivision/import-cli-magento": "dev-master" } ... }
and finish the installation by updating composer on the commandline with
$ composer update
The extension should now be installed ready for development.