Skip to content

Commit ba7067d

Browse files
author
Jordan Hall
committed
Change package name and namespace
1 parent 31ab780 commit ba7067d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+135
-135
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# 🔀 Universal Extensible Data Migrator (UXDM)
22

3-
[![Build Status](https://travis-ci.org/rapidwebltd/uxdm.svg?branch=master)](https://travis-ci.org/rapidwebltd/uxdm)
4-
[![Coverage Status](https://coveralls.io/repos/github/rapidwebltd/uxdm/badge.svg?branch=master)](https://coveralls.io/github/rapidwebltd/uxdm?branch=master)
3+
[![Build Status](https://travis-ci.org/divineomega/uxdm.svg?branch=master)](https://travis-ci.org/divineomega/uxdm)
4+
[![Coverage Status](https://coveralls.io/repos/github/divineomega/uxdm/badge.svg?branch=master)](https://coveralls.io/github/divineomega/uxdm?branch=master)
55
[![StyleCI](https://styleci.io/repos/90974025/shield?branch=master)](https://styleci.io/repos/90974025)
6-
![Packagist](https://img.shields.io/packagist/dt/rapidwebltd/uxdm.svg)
6+
![Packagist](https://img.shields.io/packagist/dt/divineomega/uxdm.svg)
77

88
UXDM helps developers migrate data from one system or format to another.
99

@@ -12,7 +12,7 @@ UXDM helps developers migrate data from one system or format to another.
1212
UXDM can be easily installed using Composer. Just run the following command from the root of your project.
1313

1414
```
15-
composer require rapidwebltd/uxdm
15+
composer require divineomega/uxdm
1616
```
1717

1818
If you have never used the Composer dependency manager before, head to the [Composer website](https://getcomposer.org/) for more information on how to get started.

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "rapidwebltd/uxdm",
2+
"name": "divineomega/uxdm",
33
"description": "UXDM helps developers migrate data from one system or format to another.",
44
"type": "library",
55
"authors": [
@@ -15,15 +15,15 @@
1515
},
1616
"autoload": {
1717
"psr-4": {
18-
"RapidWeb\\uxdm\\": "src/"
18+
"DivineOmega\\uxdm\\": "src/"
1919
}
2020
},
2121
"license": "LGPL-3.0-only",
2222
"require": {
2323
"psr/cache": "^1.0",
2424
"cache/array-adapter": "^1.0",
2525
"illuminate/support": "^5.1",
26-
"rapidwebltd/array_undot": "^1.0",
27-
"rapidwebltd/php-cli-progress-bar": "^1.0"
26+
"divineomega/array_undot": "^1.0",
27+
"divineomega/php-cli-progress-bar": "^1.0"
2828
}
2929
}

docs/sources/PDOSource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ PDO sources allow retrieval of data from multiple tables. You can do this via ov
4242
or by adding joins. You can add a join to another table quite easily. See the following example.
4343

4444
```php
45-
use RapidWeb\uxdm\Objects\Sources\PDO\Join;
45+
use DivineOmega\uxdm\Objects\Sources\PDO\Join;
4646
$pdoSource->addJoin(new Join('table_to_join_to', 'join_to_key', 'join_from_key'));
4747
```
4848

src/Examples/AssocArraytoAssocArrayMigration/Example.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
require_once __DIR__.'/../../../vendor/autoload.php';
44

5-
use RapidWeb\uxdm\Objects\Destinations\AssociativeArrayDestination;
6-
use RapidWeb\uxdm\Objects\Migrator;
7-
use RapidWeb\uxdm\Objects\Sources\AssociativeArraySource;
5+
use DivineOmega\uxdm\Objects\Destinations\AssociativeArrayDestination;
6+
use DivineOmega\uxdm\Objects\Migrator;
7+
use DivineOmega\uxdm\Objects\Sources\AssociativeArraySource;
88

99
$sourceArray = [
1010
['name' => 'James', 'height' => 1.88],

src/Examples/CSVtoCSVMigration/Example.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
require_once __DIR__.'/../../../vendor/autoload.php';
44

5-
use RapidWeb\uxdm\Objects\Destinations\CSVDestination;
6-
use RapidWeb\uxdm\Objects\Migrator;
7-
use RapidWeb\uxdm\Objects\Sources\CSVSource;
5+
use DivineOmega\uxdm\Objects\Destinations\CSVDestination;
6+
use DivineOmega\uxdm\Objects\Migrator;
7+
use DivineOmega\uxdm\Objects\Sources\CSVSource;
88

99
$csvSource = new CSVSource(__DIR__.'/source.csv');
1010
$csvDestination = new CSVDestination(__DIR__.'/destination.csv');

src/Examples/PDOtoCSVMigration/Example.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
require_once __DIR__.'/../../../vendor/autoload.php';
44

5-
use RapidWeb\uxdm\Objects\Destinations\CSVDestination;
6-
use RapidWeb\uxdm\Objects\Migrator;
7-
use RapidWeb\uxdm\Objects\Sources\PDOSource;
5+
use DivineOmega\uxdm\Objects\Destinations\CSVDestination;
6+
use DivineOmega\uxdm\Objects\Migrator;
7+
use DivineOmega\uxdm\Objects\Sources\PDOSource;
88

99
$pdo = new PDO('mysql:dbname=laravel-test;host=127.0.0.1', 'root', getenv('UXDM_EXAMPLE_PASSWORD'));
1010
$pdoSource = new PDOSource($pdo, 'users');

src/Examples/PDOtoPDOMigration/Example.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
use Cache\Adapter\Filesystem\FilesystemCachePool;
66
use League\Flysystem\Adapter\Local;
77
use League\Flysystem\Filesystem;
8-
use RapidWeb\uxdm\Objects\DataItem;
9-
use RapidWeb\uxdm\Objects\Destinations\PDODestination;
10-
use RapidWeb\uxdm\Objects\Migrator;
11-
use RapidWeb\uxdm\Objects\Sources\PDOSource;
8+
use DivineOmega\uxdm\Objects\DataItem;
9+
use DivineOmega\uxdm\Objects\Destinations\PDODestination;
10+
use DivineOmega\uxdm\Objects\Migrator;
11+
use DivineOmega\uxdm\Objects\Sources\PDOSource;
1212

1313
$pdoSource = new PDOSource(new PDO('mysql:dbname=laravel-test;host=127.0.0.1', 'root', getenv('UXDM_EXAMPLE_PASSWORD')), 'users');
1414

src/Examples/XMLtoCSVMigration/Example.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
require_once __DIR__.'/../../../vendor/autoload.php';
44

5-
use RapidWeb\uxdm\Objects\Destinations\CSVDestination;
6-
use RapidWeb\uxdm\Objects\Migrator;
7-
use RapidWeb\uxdm\Objects\Sources\XMLSource;
5+
use DivineOmega\uxdm\Objects\Destinations\CSVDestination;
6+
use DivineOmega\uxdm\Objects\Migrator;
7+
use DivineOmega\uxdm\Objects\Sources\XMLSource;
88

99
$xmlSource = new XMLSource(__DIR__.'/source.xml', '/ns:urlset/ns:url');
1010
$xmlSource->addXMLNamespace('ns', 'http://www.sitemaps.org/schemas/sitemap/0.9');

src/Interfaces/DestinationInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace RapidWeb\uxdm\Interfaces;
3+
namespace DivineOmega\uxdm\Interfaces;
44

55
interface DestinationInterface
66
{

src/Interfaces/SourceInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace RapidWeb\uxdm\Interfaces;
3+
namespace DivineOmega\uxdm\Interfaces;
44

55
interface SourceInterface
66
{

0 commit comments

Comments
 (0)