Skip to content

Commit 599881a

Browse files
committed
Exorg vendor name in namespaces changed to ExOrg (#107)
1 parent ad10deb commit 599881a

File tree

73 files changed

+169
-169
lines changed

Some content is hidden

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

73 files changed

+169
-169
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ require_once (__DIR__ . '/vendor/autoload.php');
7272

7373
```php
7474

75-
use Exorg\DataCoder\JsonDataEncoder;
75+
use ExOrg\DataCoder\JsonDataEncoder;
7676

7777
$data = [
7878
"firstName" => "John",
@@ -108,7 +108,7 @@ print($result);
108108

109109
```php
110110

111-
use Exorg\DataCoder\YamlDataDecoder;
111+
use ExOrg\DataCoder\YamlDataDecoder;
112112

113113
$data = '
114114
---
@@ -147,7 +147,7 @@ Array
147147
### Data Encoder with configurable format
148148

149149
```php
150-
use Exorg\DataCoder\DataEncoder;
150+
use ExOrg\DataCoder\DataEncoder;
151151

152152
$data = [
153153
"firstName" => "John",
@@ -183,7 +183,7 @@ address:
183183
### Data Decoder with configurable format
184184

185185
```php
186-
use Exorg\DataCoder\DataDecoder;
186+
use ExOrg\DataCoder\DataDecoder;
187187

188188
$data = '
189189
{
@@ -234,7 +234,7 @@ Datafile coders with configurable data format - **DatafileEncoder** and **Datafi
234234
##### DatafileEncoder
235235

236236
```php
237-
use Exorg\DataCoder\DatafileEncoder;
237+
use ExOrg\DataCoder\DatafileEncoder;
238238

239239
$data = [
240240
"firstName" => "John",
@@ -271,7 +271,7 @@ print file_get_contents($datafilePath);
271271
##### DatafileDecoder
272272

273273
```php
274-
use Exorg\DataCoder\DatafileDecoder;
274+
use ExOrg\DataCoder\DatafileDecoder;
275275

276276
$datafilePath = 'data.yaml';
277277

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"autoload": {
3030
"psr-4": {
31-
"Exorg\\DataCoder\\": [
31+
"ExOrg\\DataCoder\\": [
3232
"src/",
3333
"src/coders",
3434
"src/coders/data_coders/",
@@ -45,7 +45,7 @@
4545
},
4646
"autoload-dev": {
4747
"psr-4": {
48-
"Exorg\\DataCoder\\": [
48+
"ExOrg\\DataCoder\\": [
4949
"tests/",
5050
"tests/testing_environment/",
5151
"tests/testing_environment/helpers/",

phpcs.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0"?>
2-
<ruleset name="Exorg_PHP_DataCoder">
2+
<ruleset name="ExOrg_PHP_DataCoder">
33
<description>The coding standard for PHPDataCoder.</description>
44

55
<file>./src</file>

src/coder_builder/CoderBuildingTrait.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* CoderBuildingTrait.

src/coder_builder/CoderClassNotFoundException.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* CoderClassNotFoundException.

src/coders/data_coders/data_decoders/AbstractDataDecoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* AbstractDataDecoder.

src/coders/data_coders/data_decoders/DataDecoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* DataDecoder.

src/coders/data_coders/data_decoders/DataDecodingStrategyInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* DataDecodingStrategyInterface.

src/coders/data_coders/data_decoders/JsonDataDecoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* JsonDataDecoder.

src/coders/data_coders/data_decoders/YamlDataDecoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
use Symfony\Component\Yaml\Yaml;
1515

src/coders/data_coders/data_encoders/AbstractDataEncoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* AbstractDataEncoder.

src/coders/data_coders/data_encoders/DataEncoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* DataEncoder.

src/coders/data_coders/data_encoders/DataEncodingStrategyInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* DataEncodingStrategyInterface.

src/coders/data_coders/data_encoders/JsonDataEncoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* JsonDataEncoder.

src/coders/data_coders/data_encoders/YamlDataEncoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
use Symfony\Component\Yaml\Yaml;
1515

src/coders/datafile_coders/AbstractDatafileCoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* AbstractDatafileCoder.

src/coders/datafile_coders/datafile_decoders/DatafileDecoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* DatafileDecoder.

src/coders/datafile_coders/datafile_decoders/JsonDatafileDecoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* JsonDatafileDecoder.

src/coders/datafile_coders/datafile_decoders/YamlDatafileDecoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* YamlDatafileDecoder.

src/coders/datafile_coders/datafile_encoders/DatafileEncoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* DatafileEncoder.

src/coders/datafile_coders/datafile_encoders/JsonDatafileEncoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* JsonDatafileEncoder.

src/coders/datafile_coders/datafile_encoders/YamlDatafileEncoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* YamlDatafileEncoder.

src/data_format/DataFormat.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
use Garoevans\PhpEnum\Enum;
1515

src/data_format/DataFormatConfigurableTrait.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* DataFormatConfigurableTrait.

src/data_format/DataFormatInvalidException.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* DataFormatInvalidException.

src/file/File.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* File.

src/file/FileException.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* NonexistentFileException.

tests/testing_environment/classes/DummyClassFormat1Decoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* Dummy class for testing

tests/testing_environment/classes/DummyClassFormat1Encoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* Dummy class for testing

tests/testing_environment/classes/DummyClassFormat1Nocoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* Dummy class for testing

tests/testing_environment/classes/DummyClassFormat2Decoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* Dummy class for testing

tests/testing_environment/classes/DummyClassFormat2Encoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* Dummy class for testing

tests/testing_environment/classes/DummyClassFormat2Nocoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* Dummy class for testing

tests/testing_environment/classes/DummyClassFormatNotRecognizedDecoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* Dummy class for testing

tests/testing_environment/classes/DummyClassFormatNotRecognizedEncoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* Dummy class for testing

tests/testing_environment/classes/DummyClassFormatNullDecoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* Dummy class for testing

tests/testing_environment/classes/DummyClassFormatNullEncoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* Dummy class for testing

tests/testing_environment/classes/Format1DataDecoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Exorg\DataCoder;
12+
namespace ExOrg\DataCoder;
1313

1414
/**
1515
* Dummy data decoder for testing purposes only.

0 commit comments

Comments
 (0)