Skip to content

Commit

Permalink
change root namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
vstelmakh committed Feb 22, 2025
1 parent c3ad01a commit 47717e8
Show file tree
Hide file tree
Showing 18 changed files with 52 additions and 52 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
},
"autoload": {
"psr-4": {
"VStelmakh\\TestLogger\\": "src/"
"VStelmakh\\PsrTestLogger\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"VStelmakh\\TestLogger\\Tests\\": "tests/"
"VStelmakh\\PsrTestLogger\\Tests\\": "tests/"
}
},
"config": {
Expand Down
4 changes: 2 additions & 2 deletions src/Assert/AsserterInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

declare(strict_types=1);

namespace VStelmakh\TestLogger\Assert;
namespace VStelmakh\PsrTestLogger\Assert;

use VStelmakh\TestLogger\Log\Collection;
use VStelmakh\PsrTestLogger\Log\Collection;

/**
* @internal
Expand Down
4 changes: 2 additions & 2 deletions src/Assert/HasLogsAsserter.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

declare(strict_types=1);

namespace VStelmakh\TestLogger\Assert;
namespace VStelmakh\PsrTestLogger\Assert;

use VStelmakh\TestLogger\Log\Collection;
use VStelmakh\PsrTestLogger\Log\Collection;

/**
* @internal
Expand Down
4 changes: 2 additions & 2 deletions src/Assert/NullAsserter.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

declare(strict_types=1);

namespace VStelmakh\TestLogger\Assert;
namespace VStelmakh\PsrTestLogger\Assert;

use VStelmakh\TestLogger\Log\Collection;
use VStelmakh\PsrTestLogger\Log\Collection;

/**
* @internal
Expand Down
2 changes: 1 addition & 1 deletion src/Assert/PHPUnitAssertProxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace VStelmakh\TestLogger\Assert;
namespace VStelmakh\PsrTestLogger\Assert;

/**
* @internal
Expand Down
2 changes: 1 addition & 1 deletion src/Log/Collection.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace VStelmakh\TestLogger\Log;
namespace VStelmakh\PsrTestLogger\Log;

/**
* @internal
Expand Down
2 changes: 1 addition & 1 deletion src/Log/Log.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace VStelmakh\TestLogger\Log;
namespace VStelmakh\PsrTestLogger\Log;

class Log
{
Expand Down
6 changes: 3 additions & 3 deletions src/Match/Assert.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

declare(strict_types=1);

namespace VStelmakh\TestLogger\Match;
namespace VStelmakh\PsrTestLogger\Match;

use Psr\Log\LogLevel;
use VStelmakh\TestLogger\Assert\HasLogsAsserter;
use VStelmakh\TestLogger\Log\Collection;
use VStelmakh\PsrTestLogger\Assert\HasLogsAsserter;
use VStelmakh\PsrTestLogger\Log\Collection;

class Assert
{
Expand Down
6 changes: 3 additions & 3 deletions src/Match/Filter.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

declare(strict_types=1);

namespace VStelmakh\TestLogger\Match;
namespace VStelmakh\PsrTestLogger\Match;

use Psr\Log\LogLevel;
use VStelmakh\TestLogger\Assert\NullAsserter;
use VStelmakh\TestLogger\Log\Collection;
use VStelmakh\PsrTestLogger\Assert\NullAsserter;
use VStelmakh\PsrTestLogger\Log\Collection;

class Filter
{
Expand Down
8 changes: 4 additions & 4 deletions src/Match/Matcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

declare(strict_types=1);

namespace VStelmakh\TestLogger\Match;
namespace VStelmakh\PsrTestLogger\Match;

use VStelmakh\TestLogger\Assert\AsserterInterface;
use VStelmakh\TestLogger\Log\Collection;
use VStelmakh\TestLogger\Log\Log;
use VStelmakh\PsrTestLogger\Assert\AsserterInterface;
use VStelmakh\PsrTestLogger\Log\Collection;
use VStelmakh\PsrTestLogger\Log\Log;

class Matcher
{
Expand Down
10 changes: 5 additions & 5 deletions src/TestLogger.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

declare(strict_types=1);

namespace VStelmakh\TestLogger;
namespace VStelmakh\PsrTestLogger;

use Psr\Log\AbstractLogger;
use VStelmakh\TestLogger\Log\Collection;
use VStelmakh\TestLogger\Log\Log;
use VStelmakh\TestLogger\Match\Assert;
use VStelmakh\TestLogger\Match\Filter;
use VStelmakh\PsrTestLogger\Log\Collection;
use VStelmakh\PsrTestLogger\Log\Log;
use VStelmakh\PsrTestLogger\Match\Assert;
use VStelmakh\PsrTestLogger\Match\Filter;

class TestLogger extends AbstractLogger
{
Expand Down
8 changes: 4 additions & 4 deletions tests/Assert/HasLogsAsserterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

declare(strict_types=1);

namespace VStelmakh\TestLogger\Tests\Assert;
namespace VStelmakh\PsrTestLogger\Tests\Assert;

use PHPUnit\Framework\Assert;
use PHPUnit\Framework\AssertionFailedError;
use Psr\Log\LogLevel;
use VStelmakh\TestLogger\Assert\HasLogsAsserter;
use VStelmakh\PsrTestLogger\Assert\HasLogsAsserter;
use PHPUnit\Framework\TestCase;
use VStelmakh\TestLogger\Log\Collection;
use VStelmakh\TestLogger\Log\Log;
use VStelmakh\PsrTestLogger\Log\Collection;
use VStelmakh\PsrTestLogger\Log\Log;

class HasLogsAsserterTest extends TestCase
{
Expand Down
4 changes: 2 additions & 2 deletions tests/Assert/PHPUnitAssertProxyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

declare(strict_types=1);

namespace VStelmakh\TestLogger\Tests\Assert;
namespace VStelmakh\PsrTestLogger\Tests\Assert;

use PHPUnit\Framework\Assert;
use PHPUnit\Framework\AssertionFailedError;
use VStelmakh\TestLogger\Assert\PHPUnitAssertProxy;
use VStelmakh\PsrTestLogger\Assert\PHPUnitAssertProxy;
use PHPUnit\Framework\TestCase;

class PHPUnitAssertProxyTest extends TestCase
Expand Down
6 changes: 3 additions & 3 deletions tests/Log/CollectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

declare(strict_types=1);

namespace VStelmakh\TestLogger\Tests\Log;
namespace VStelmakh\PsrTestLogger\Tests\Log;

use Psr\Log\LogLevel;
use VStelmakh\TestLogger\Log\Collection;
use VStelmakh\PsrTestLogger\Log\Collection;
use PHPUnit\Framework\TestCase;
use VStelmakh\TestLogger\Log\Log;
use VStelmakh\PsrTestLogger\Log\Log;

class CollectionTest extends TestCase
{
Expand Down
8 changes: 4 additions & 4 deletions tests/Match/AssertTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

declare(strict_types=1);

namespace VStelmakh\TestLogger\Tests\Match;
namespace VStelmakh\PsrTestLogger\Tests\Match;

use PHPUnit\Framework\AssertionFailedError;
use PHPUnit\Framework\Attributes\DataProvider;
use Psr\Log\LogLevel;
use VStelmakh\TestLogger\Log\Collection;
use VStelmakh\TestLogger\Log\Log;
use VStelmakh\TestLogger\Match\Assert;
use VStelmakh\PsrTestLogger\Log\Collection;
use VStelmakh\PsrTestLogger\Log\Log;
use VStelmakh\PsrTestLogger\Match\Assert;
use PHPUnit\Framework\TestCase;

class AssertTest extends TestCase
Expand Down
10 changes: 5 additions & 5 deletions tests/Match/FilterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

declare(strict_types=1);

namespace VStelmakh\TestLogger\Tests\Match;
namespace VStelmakh\PsrTestLogger\Tests\Match;

use PHPUnit\Framework\Attributes\DataProvider;
use Psr\Log\LogLevel;
use VStelmakh\TestLogger\Log\Collection;
use VStelmakh\TestLogger\Log\Log;
use VStelmakh\TestLogger\Match\Filter;
use VStelmakh\PsrTestLogger\Log\Collection;
use VStelmakh\PsrTestLogger\Log\Log;
use VStelmakh\PsrTestLogger\Match\Filter;
use PHPUnit\Framework\TestCase;
use VStelmakh\TestLogger\Match\Matcher;
use VStelmakh\PsrTestLogger\Match\Matcher;

class FilterTest extends TestCase
{
Expand Down
10 changes: 5 additions & 5 deletions tests/Match/MatcherTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

declare(strict_types=1);

namespace VStelmakh\TestLogger\Tests\Match;
namespace VStelmakh\PsrTestLogger\Tests\Match;

use PHPUnit\Framework\MockObject\MockObject;
use Psr\Log\LogLevel;
use VStelmakh\TestLogger\Assert\AsserterInterface;
use VStelmakh\TestLogger\Log\Collection;
use VStelmakh\TestLogger\Log\Log;
use VStelmakh\TestLogger\Match\Matcher;
use VStelmakh\PsrTestLogger\Assert\AsserterInterface;
use VStelmakh\PsrTestLogger\Log\Collection;
use VStelmakh\PsrTestLogger\Log\Log;
use VStelmakh\PsrTestLogger\Match\Matcher;
use PHPUnit\Framework\TestCase;

class MatcherTest extends TestCase
Expand Down
6 changes: 3 additions & 3 deletions tests/TestLoggerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

declare(strict_types=1);

namespace VStelmakh\TestLogger\Tests;
namespace VStelmakh\PsrTestLogger\Tests;

use PHPUnit\Framework\AssertionFailedError;
use PHPUnit\Framework\Attributes\DataProvider;
use Psr\Log\LogLevel;
use VStelmakh\TestLogger\Log\Log;
use VStelmakh\TestLogger\TestLogger;
use VStelmakh\PsrTestLogger\Log\Log;
use VStelmakh\PsrTestLogger\TestLogger;
use PHPUnit\Framework\TestCase;

class TestLoggerTest extends TestCase
Expand Down

0 comments on commit 47717e8

Please sign in to comment.