Skip to content

Commit 2f667d7

Browse files
committedSep 22, 2023
Rename Path and Repo for Core-Name-Convention
1 parent e862133 commit 2f667d7

8 files changed

+27
-27
lines changed
 

‎README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ this file
1414

1515
Installation via composer
1616
```
17-
composer require oxid-solution-catalysts/cliexportimport ^1.0.0
17+
composer require oxid-solution-catalysts/exportimport-tools ^1.0.0
1818
```
1919

2020
## Usage
2121

2222
### Configuration
2323

24-
Use a configuration YAML e.g. dump.yaml and save it here: var/configuration/cliexportimport/dump.yaml
24+
Use a configuration YAML e.g. dump.yaml and save it here: var/configuration/exportimport-tools/dump.yaml
2525

2626
Contents of the configuration YAML
2727
```
@@ -49,33 +49,33 @@ vendor/bin/oe-console osc:db:export --yaml=dump.yaml
4949
```
5050
The dump is created in the /source/export/ directory. The name of the dump is the defined "dumpFileName" from the Configuration YAML.
5151

52-
The --yaml option contains the name of the configuration file, which is located in the directory: var/configuration/cliexportimport/
52+
The --yaml option contains the name of the configuration file, which is located in the directory: var/configuration/exportimport-tools/
5353

5454
### Import Data
5555
```
5656
vendor/bin/oe-console osc:db:import --yaml=dump.yaml
5757
```
5858
The dump is read from the /source/import/ directory. The name of the dump is the defined "dumpFileName" from the Configuration YAML
5959

60-
The --yaml option contains the name of the configuration file, which is located in the directory: var/configuration/cliexportimport/
60+
The --yaml option contains the name of the configuration file, which is located in the directory: var/configuration/exportimport-tools/
6161

6262
## Running tests
6363

6464
### Run
6565

6666
Code Style
6767
```
68-
composer phpcs --working-dir=extensions/osc/cliexportimport
68+
composer phpcs --working-dir=extensions/osc/exportimport-tools
6969
```
7070

7171
PHPmd
7272
```
73-
composer phpmd --working-dir=extensions/osc/cliexportimport
73+
composer phpmd --working-dir=extensions/osc/exportimport-tools
7474
```
7575

7676
PHPStan
7777
```
78-
composer phpstan --working-dir=extensions/osc/cliexportimport
78+
composer phpstan --working-dir=extensions/osc/exportimport-tools
7979
```
8080

8181

‎composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "oxid-solution-catalysts/cliexportimport",
2+
"name": "oxid-solution-catalysts/exportimport-tools",
33
"description": "OXID eSales extension for oe-console to im- and export the database",
44
"type": "oxideshop-component",
55
"keywords": ["oxid", "modules", "eShop", "oe-console", "export", "import"],
@@ -13,7 +13,7 @@
1313
},
1414
"extra": {
1515
"oxideshop": {
16-
"target-directory": "osc/cliexportimport",
16+
"target-directory": "osc/exportimport-tools",
1717
"blacklist-filter": [
1818
"resources/**/*",
1919
"tests/**/*"
@@ -34,7 +34,7 @@
3434
},
3535
"autoload": {
3636
"psr-4": {
37-
"OxidSolutionCatalysts\\CliExportImport\\": "src/"
37+
"OxidSolutionCatalysts\\ExportImportTools\\": "src/"
3838
}
3939
},
4040
"minimum-stability": "dev",

‎services.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ services:
44
public: true
55

66
osc.db.export:
7-
class: OxidSolutionCatalysts\CliExportImport\Command\DBExport
7+
class: OxidSolutionCatalysts\ExportImportTools\Command\DBExport
88
tags:
99
- { name: 'console.command', command: 'osc:db:export' }
1010

1111
osc.db.import:
12-
class: OxidSolutionCatalysts\CliExportImport\Command\DBImport
12+
class: OxidSolutionCatalysts\ExportImportTools\Command\DBImport
1313
tags:
1414
- { name: 'console.command', command: 'osc:db:import' }

‎src/Command/DBExport.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
* See LICENSE file for license details.
66
*/
77

8-
namespace OxidSolutionCatalysts\CliExportImport\Command;
8+
namespace OxidSolutionCatalysts\ExportImportTools\Command;
99

1010
use Exception;
1111
use Ifsnop\Mysqldump\Mysqldump;
12-
use OxidSolutionCatalysts\CliExportImport\Traits\CommonMethods;
13-
use OxidSolutionCatalysts\CliExportImport\Traits\PdoMethods;
12+
use OxidSolutionCatalysts\ExportImportTools\Traits\CommonMethods;
13+
use OxidSolutionCatalysts\ExportImportTools\Traits\PdoMethods;
1414
use Symfony\Component\Console\Command\Command;
1515
use Symfony\Component\Console\Input\InputOption;
1616
use Symfony\Component\Console\Input\InputInterface;
@@ -27,12 +27,12 @@ protected function configure(): void
2727
{
2828
$this->setDescription(
2929
'Export Database to /export folder.
30-
Optional control via yaml-file in var/configuration/cliexportimport/'
30+
Optional control via yaml-file in var/configuration/exportimport-tools/'
3131
)->addOption(
3232
'--yaml',
3333
'',
3434
InputOption::VALUE_OPTIONAL,
35-
'Name of yaml-file in in config-folder var/configuration/cliexportimport/'
35+
'Name of yaml-file in in config-folder var/configuration/exportimport-tools/'
3636
);
3737
}
3838

‎src/Command/DBImport.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
* See LICENSE file for license details.
66
*/
77

8-
namespace OxidSolutionCatalysts\CliExportImport\Command;
8+
namespace OxidSolutionCatalysts\ExportImportTools\Command;
99

10-
use OxidSolutionCatalysts\CliExportImport\Traits\CommonMethods;
10+
use OxidSolutionCatalysts\ExportImportTools\Traits\CommonMethods;
1111
use RuntimeException;
1212
use Symfony\Component\Console\Command\Command;
1313
use Symfony\Component\Console\Input\InputOption;
1414
use Symfony\Component\Console\Input\InputInterface;
1515
use Symfony\Component\Console\Output\OutputInterface;
16-
use OxidSolutionCatalysts\CliExportImport\Core\Import;
16+
use OxidSolutionCatalysts\ExportImportTools\Core\Import;
1717

1818
class DBImport extends Command
1919
{
@@ -25,12 +25,12 @@ protected function configure(): void
2525
{
2626
$this->setDescription(
2727
'Import Database from /import folder.
28-
Optional control via yaml-file in var/configuration/cliexportimport/'
28+
Optional control via yaml-file in var/configuration/exportimport-tools/'
2929
)->addOption(
3030
'--yaml',
3131
'',
3232
InputOption::VALUE_OPTIONAL,
33-
'Name of yaml-file in in config-folder var/configuration/cliexportimport/'
33+
'Name of yaml-file in in config-folder var/configuration/exportimport-tools/'
3434
);
3535
}
3636

‎src/Core/Import.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace OxidSolutionCatalysts\CliExportImport\Core;
3+
namespace OxidSolutionCatalysts\ExportImportTools\Core;
44

5-
use OxidSolutionCatalysts\CliExportImport\Traits\PdoMethods;
5+
use OxidSolutionCatalysts\ExportImportTools\Traits\PdoMethods;
66
use PDO;
77
use PDOException;
88
use Exception;

‎src/Traits/CommonMethods.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* See LICENSE file for license details.
66
*/
77

8-
namespace OxidSolutionCatalysts\CliExportImport\Traits;
8+
namespace OxidSolutionCatalysts\ExportImportTools\Traits;
99

1010
use OxidEsales\Eshop\Core\Registry;
1111
use Symfony\Component\Yaml\Yaml;
@@ -79,7 +79,7 @@ protected function getYamlConfigPath(): string
7979
return $this->getRealPath(
8080
"var" . DIRECTORY_SEPARATOR .
8181
"configuration" . DIRECTORY_SEPARATOR .
82-
"cliexportimport" . DIRECTORY_SEPARATOR,
82+
"exportimport-tools" . DIRECTORY_SEPARATOR,
8383
false
8484
);
8585
}

‎src/Traits/PdoMethods.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* See LICENSE file for license details.
66
*/
77

8-
namespace OxidSolutionCatalysts\CliExportImport\Traits;
8+
namespace OxidSolutionCatalysts\ExportImportTools\Traits;
99

1010
use OxidEsales\Eshop\Core\Registry;
1111
use Symfony\Component\Yaml\Yaml;

0 commit comments

Comments
 (0)
Please sign in to comment.