Skip to content

Commit

Permalink
Merge 78d09f7 into 3e6e05f
Browse files Browse the repository at this point in the history
  • Loading branch information
chadicus committed Aug 11, 2018
2 parents 3e6e05f + 78d09f7 commit 77df678
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 19 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -1,3 +1,5 @@
/vendor/
composer.lock
phpcs.xml
phpunit.xml
clover.xml
6 changes: 3 additions & 3 deletions composer.json
@@ -1,5 +1,5 @@
{
"name": "chadicus/psr-log-helper",
"name": "subjective-php/psr-log-helper",
"description": "Utilities to assist with PSR-3 logger implementations",
"license": "MIT",
"require": {
Expand All @@ -15,9 +15,9 @@
"sort-packages": true
},
"autoload": {
"psr-4": { "Chadicus\\Psr\\Log\\" : "src" }
"psr-4": { "SubjectivePHP\\Psr\\Log\\" : "src" }
},
"autoload-dev": {
"psr-4": { "ChadicusTest\\Psr\\Log\\" : "tests" }
"psr-4": { "SubjectivePHPTest\\Psr\\Log\\" : "tests" }
}
}
2 changes: 1 addition & 1 deletion src/ExceptionExtractorTrait.php
@@ -1,6 +1,6 @@
<?php

namespace Chadicus\Psr\Log;
namespace SubjectivePHP\Psr\Log;

use Psr\Log\InvalidArgumentException;

Expand Down
2 changes: 1 addition & 1 deletion src/LevelValidatorTrait.php
@@ -1,6 +1,6 @@
<?php

namespace Chadicus\Psr\Log;
namespace SubjectivePHP\Psr\Log;

use Psr\Log\InvalidArgumentException;

Expand Down
2 changes: 1 addition & 1 deletion src/MessageInterpolationTrait.php
@@ -1,6 +1,6 @@
<?php

namespace Chadicus\Psr\Log;
namespace SubjectivePHP\Psr\Log;

/**
* Trait for PSR-3 Message Interpolation.
Expand Down
2 changes: 1 addition & 1 deletion src/MessageValidatorTrait.php
@@ -1,6 +1,6 @@
<?php

namespace Chadicus\Psr\Log;
namespace SubjectivePHP\Psr\Log;

use Psr\Log\InvalidArgumentException;

Expand Down
6 changes: 3 additions & 3 deletions tests/ExceptionExtractorTraitTest.php
@@ -1,11 +1,11 @@
<?php

namespace ChadicusTest\Psr\Log;
namespace SubjectivePHPTest\Psr\Log;

use Chadicus\Psr\Log\ExceptionExtractorTrait;
use SubjectivePHP\Psr\Log\ExceptionExtractorTrait;

/**
* @coversDefaultClass \Chadicus\Psr\Log\ExceptionExtractorTrait
* @coversDefaultClass \SubjectivePHP\Psr\Log\ExceptionExtractorTrait
* @covers ::<private>
*/
final class ExceptionExtractorTraitTest extends \PHPUnit\Framework\TestCase
Expand Down
6 changes: 3 additions & 3 deletions tests/LevelValidatorTraitTest.php
@@ -1,11 +1,11 @@
<?php

namespace ChadicusTest\Psr\Log;
namespace SubjectivePHPTest\Psr\Log;

use Chadicus\Psr\Log\LevelValidatorTrait;
use SubjectivePHP\Psr\Log\LevelValidatorTrait;

/**
* @coversDefaultClass \Chadicus\Psr\Log\LevelValidatorTrait
* @coversDefaultClass \SubjectivePHP\Psr\Log\LevelValidatorTrait
* @covers ::<private>
*/
final class LevelValidatorTraitTest extends \PHPUnit\Framework\TestCase
Expand Down
6 changes: 3 additions & 3 deletions tests/MessageInterpolationTraitTest.php
@@ -1,11 +1,11 @@
<?php

namespace ChadicusTest\Psr\Log;
namespace SubjectivePHPTest\Psr\Log;

use Chadicus\Psr\Log\MessageInterpolationTrait;
use SubjectivePHP\Psr\Log\MessageInterpolationTrait;

/**
* @coversDefaultClass \Chadicus\Psr\Log\MessageInterpolationTrait
* @coversDefaultClass \SubjectivePHP\Psr\Log\MessageInterpolationTrait
* @covers ::<private>
*/
final class MessageInterpolationTraitTest extends \PHPUnit\Framework\TestCase
Expand Down
6 changes: 3 additions & 3 deletions tests/MessageValidatorTraitTest.php
@@ -1,11 +1,11 @@
<?php

namespace ChadicusTest\Psr\Log;
namespace SubjectivePHPTest\Psr\Log;

use Chadicus\Psr\Log\MessageValidatorTrait;
use SubjectivePHP\Psr\Log\MessageValidatorTrait;

/**
* @coversDefaultClass \Chadicus\Psr\Log\MessageValidatorTrait
* @coversDefaultClass \SubjectivePHP\Psr\Log\MessageValidatorTrait
* @covers ::<private>
*/
final class MessageValidatorTraitTest extends \PHPUnit\Framework\TestCase
Expand Down

0 comments on commit 77df678

Please sign in to comment.