From 1ac4b0017b22c46847eb2f984c0e561447eb3ab9 Mon Sep 17 00:00:00 2001 From: chadicus Date: Sat, 11 Aug 2018 16:24:49 -0400 Subject: [PATCH 1/3] Change ownership to SubjectivePHP --- composer.json | 6 +++--- src/ExceptionExtractorTrait.php | 2 +- src/LevelValidatorTrait.php | 2 +- src/MessageInterpolationTrait.php | 2 +- src/MessageValidatorTrait.php | 2 +- tests/ExceptionExtractorTraitTest.php | 6 +++--- tests/LevelValidatorTraitTest.php | 6 +++--- tests/MessageInterpolationTraitTest.php | 6 +++--- tests/MessageValidatorTraitTest.php | 6 +++--- 9 files changed, 19 insertions(+), 19 deletions(-) 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 From 2a9205754e3140ad7b9770c376c7f371b4759584 Mon Sep 17 00:00:00 2001 From: chadicus Date: Sat, 11 Aug 2018 16:25:06 -0400 Subject: [PATCH 2/3] Add phpunit.xml to .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 2f3ff7a..e72f491 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /vendor/ composer.lock phpcs.xml +phpunit.xml From 78d09f766d510950770cdad4620b3a49a57c0d43 Mon Sep 17 00:00:00 2001 From: chadicus Date: Sat, 11 Aug 2018 16:25:34 -0400 Subject: [PATCH 3/3] Add clover.xml to .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index e72f491..88726e2 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ composer.lock phpcs.xml phpunit.xml +clover.xml