File tree 4 files changed +38
-0
lines changed
4 files changed +38
-0
lines changed Original file line number Diff line number Diff line change
1
+ # magento2-module-catalog-import-command
2
+ Import catalog via console command.
3
+
4
+ ** Work in progress.**
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " cedricblondeau/magento2-module-catalog-import-command" ,
3
+ "description" : " Import catalog via console command" ,
4
+ "type" : " magento2-module" ,
5
+ "version" : " 1.0.0" ,
6
+ "license" : " MIT" ,
7
+ "require" : {
8
+ "php" : " ~5.5.0|~5.6.0|~7.0.0" ,
9
+ "magento/framework" : " 100.0.*" ,
10
+ "magento/module-import-export" : " 100.0.*"
11
+ },
12
+ "autoload" : {
13
+ "files" : [
14
+ " registration.php"
15
+ ],
16
+ "psr-4" : {
17
+ "CedricBlondeau\\ CatalogImportCommand\\ " : " "
18
+ }
19
+ }
20
+ }
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" ?>
2
+ <config xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : noNamespaceSchemaLocation =" urn:magento:framework:Module/etc/module.xsd" >
3
+ <module name =" CedricBlondeau_CatalogImportCommand" setup_version =" 1.0.0" >
4
+ <sequence >
5
+ <module name =" Magento_CatalogImportExport" />
6
+ </sequence >
7
+ </module >
8
+ </config >
Original file line number Diff line number Diff line change
1
+ <?php
2
+ \Magento \Framework \Component \ComponentRegistrar::register (
3
+ \Magento \Framework \Component \ComponentRegistrar::MODULE ,
4
+ 'CedricBlondeau_CatalogImportCommand ' ,
5
+ __DIR__
6
+ );
You can’t perform that action at this time.
0 commit comments