Skip to content

Commit 3c4ca3e

Browse files
Initial commit
0 parents  commit 3c4ca3e

File tree

4 files changed

+38
-0
lines changed

4 files changed

+38
-0
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# magento2-module-catalog-import-command
2+
Import catalog via console command.
3+
4+
**Work in progress.**

composer.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
}

etc/module.xml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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>

registration.php

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?php
2+
\Magento\Framework\Component\ComponentRegistrar::register(
3+
\Magento\Framework\Component\ComponentRegistrar::MODULE,
4+
'CedricBlondeau_CatalogImportCommand',
5+
__DIR__
6+
);

0 commit comments

Comments
 (0)