Skip to content

Commit

Permalink
Merge pull request #4 from druidfi/change-namespace
Browse files Browse the repository at this point in the history
Change namespace to druidfi
  • Loading branch information
back-2-95 authored Aug 18, 2022
2 parents 00be927 + 210cd7d commit dc9572f
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"ext-pdo": "*",
"bomoko/mysql-cnf-parser": "dev-master",
"cweagans/composer-patches": "^1.7",
"fakerphp/faker": "^1.17",
"fakerphp/faker": "^1.20",
"ifsnop/mysqldump-php": "^2.9",
"symfony/console": "^4.4.25|^5.0|^6.0",
"symfony/event-dispatcher": "^4.4.25|^5.0|^6.0"
Expand All @@ -31,7 +31,7 @@
],
"autoload": {
"psr-4": {
"machbarmacher\\GdprDump\\": "src/"
"druidfi\\GdprDump\\": "src/"
}
},
"extra": {
Expand Down
2 changes: 1 addition & 1 deletion mysqldump
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env php
<?php

use machbarmacher\GdprDump\Command\DumpCommand;
use druidfi\GdprDump\Command\DumpCommand;
use Symfony\Component\Console\Application;

require __DIR__ . '/_bootstrap.php';
Expand Down
2 changes: 1 addition & 1 deletion src/ColumnTransformer/ColumnTransformEvent.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace machbarmacher\GdprDump\ColumnTransformer;
namespace druidfi\GdprDump\ColumnTransformer;

use Symfony\Contracts\EventDispatcher\Event;

Expand Down
6 changes: 3 additions & 3 deletions src/ColumnTransformer/ColumnTransformer.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

namespace machbarmacher\GdprDump\ColumnTransformer;
namespace druidfi\GdprDump\ColumnTransformer;

use Symfony\Component\EventDispatcher\EventDispatcher;
use machbarmacher\GdprDump\ColumnTransformer\Plugins\ClearColumnTransformer;
use machbarmacher\GdprDump\ColumnTransformer\Plugins\FakerColumnTransformer;
use druidfi\GdprDump\ColumnTransformer\Plugins\ClearColumnTransformer;
use druidfi\GdprDump\ColumnTransformer\Plugins\FakerColumnTransformer;

abstract class ColumnTransformer
{
Expand Down
2 changes: 1 addition & 1 deletion src/ColumnTransformer/ParseExpressionException.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace machbarmacher\GdprDump\ColumnTransformer;
namespace druidfi\GdprDump\ColumnTransformer;

use Exception;

Expand Down
4 changes: 2 additions & 2 deletions src/ColumnTransformer/Plugins/ClearColumnTransformer.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace machbarmacher\GdprDump\ColumnTransformer\Plugins;
namespace druidfi\GdprDump\ColumnTransformer\Plugins;

use machbarmacher\GdprDump\ColumnTransformer\ColumnTransformer;
use druidfi\GdprDump\ColumnTransformer\ColumnTransformer;

class ClearColumnTransformer extends ColumnTransformer
{
Expand Down
4 changes: 2 additions & 2 deletions src/ColumnTransformer/Plugins/FakerColumnTransformer.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

namespace machbarmacher\GdprDump\ColumnTransformer\Plugins;
namespace druidfi\GdprDump\ColumnTransformer\Plugins;

use Faker\Factory;
use Faker\Generator;
use machbarmacher\GdprDump\ColumnTransformer\ColumnTransformer;
use druidfi\GdprDump\ColumnTransformer\ColumnTransformer;
use ReflectionClass;
use ReflectionException;
use ReflectionMethod;
Expand Down
6 changes: 3 additions & 3 deletions src/Command/DumpCommand.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

namespace machbarmacher\GdprDump\Command;
namespace druidfi\GdprDump\Command;

use Ifsnop\Mysqldump\Mysqldump;
use machbarmacher\GdprDump\ConfigParser;
use machbarmacher\GdprDump\MysqldumpGdpr;
use druidfi\GdprDump\ConfigParser;
use druidfi\GdprDump\MysqldumpGdpr;
use PDO;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
Expand Down
4 changes: 2 additions & 2 deletions src/ConfigParser.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace machbarmacher\GdprDump;
namespace druidfi\GdprDump;

use bomoko\MysqlCnfParser\MysqlCnfParser;

Expand All @@ -9,7 +9,7 @@
*
* Parses key/value lines from mysql .cnf files.
*
* @package machbarmacher\GdprDump
* @package druidfi\GdprDump
*/
class ConfigParser
{
Expand Down
4 changes: 2 additions & 2 deletions src/MysqldumpGdpr.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php

namespace machbarmacher\GdprDump;
namespace druidfi\GdprDump;

use Ifsnop\Mysqldump\Mysqldump;
use machbarmacher\GdprDump\ColumnTransformer\ColumnTransformer;
use druidfi\GdprDump\ColumnTransformer\ColumnTransformer;

class MysqldumpGdpr extends Mysqldump
{
Expand Down
2 changes: 1 addition & 1 deletion tests/ColumnTransformerTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

use machbarmacher\GdprDump\ColumnTransformer\ColumnTransformer;
use druidfi\GdprDump\ColumnTransformer\ColumnTransformer;

use PHPUnit\Framework\TestCase;

Expand Down

0 comments on commit dc9572f

Please sign in to comment.