diff --git a/.gitignore b/.gitignore index 2f3ff7a..88726e2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ /vendor/ composer.lock phpcs.xml +phpunit.xml +clover.xml diff --git a/composer.json b/composer.json index 1f01fe2..5fe4f01 100644 --- a/composer.json +++ b/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": { @@ -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" } } } diff --git a/src/ExceptionExtractorTrait.php b/src/ExceptionExtractorTrait.php index b00d788..cf477fd 100644 --- a/src/ExceptionExtractorTrait.php +++ b/src/ExceptionExtractorTrait.php @@ -1,6 +1,6 @@ */ final class ExceptionExtractorTraitTest extends \PHPUnit\Framework\TestCase diff --git a/tests/LevelValidatorTraitTest.php b/tests/LevelValidatorTraitTest.php index 5e4b71c..7e7fcc3 100644 --- a/tests/LevelValidatorTraitTest.php +++ b/tests/LevelValidatorTraitTest.php @@ -1,11 +1,11 @@ */ final class LevelValidatorTraitTest extends \PHPUnit\Framework\TestCase diff --git a/tests/MessageInterpolationTraitTest.php b/tests/MessageInterpolationTraitTest.php index 6ee67cf..ff5149a 100644 --- a/tests/MessageInterpolationTraitTest.php +++ b/tests/MessageInterpolationTraitTest.php @@ -1,11 +1,11 @@ */ final class MessageInterpolationTraitTest extends \PHPUnit\Framework\TestCase diff --git a/tests/MessageValidatorTraitTest.php b/tests/MessageValidatorTraitTest.php index f5414d0..727eff2 100644 --- a/tests/MessageValidatorTraitTest.php +++ b/tests/MessageValidatorTraitTest.php @@ -1,11 +1,11 @@ */ final class MessageValidatorTraitTest extends \PHPUnit\Framework\TestCase