Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "fabacino/php-debug-functions",
"name": "fabacino/debug-functions",
"description": "Debug functions for PHP",
"type": "library",
"license": "MIT",
Expand All @@ -23,15 +23,15 @@
},
"autoload": {
"psr-4": {
"Fabacino\\Debug\\": "src"
"Fbn\\Debug\\": "src"
},
"files": [
"src/debug-functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Fabacino\\Debug\\Test\\": "tests"
"Fbn\\Debug\\Test\\": "tests"
}
}
}
2 changes: 1 addition & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src/Debug.php
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<?php

/*
* This file is part of the php-debug-functions package.
* This file is part of the fabacino/debug-functions package.
*
* (c) Fabian Wiget <fabacino@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Fabacino\Debug;
namespace Fbn\Debug;

use Fabacino\Debug\Logger;
use Fbn\Debug\Logger;
use Psr\Log\LoggerInterface;

/**
Expand Down
4 changes: 2 additions & 2 deletions src/Logger.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php

/*
* This file is part of the php-debug-functions package.
* This file is part of the fabacino/debug-functions package.
*
* (c) Fabian Wiget <fabacino@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Fabacino\Debug;
namespace Fbn\Debug;

use Psr\Log\LoggerInterface;
use Psr\Log\LogLevel;
Expand Down
4 changes: 2 additions & 2 deletions src/debug-functions.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the php-debug-functions package.
* This file is part of the fabacino/debug-functions package.
*
* (c) Fabian Wiget <fabacino@gmail.com>
*
Expand All @@ -13,7 +13,7 @@
* Debug functions.
*/

use Fabacino\Debug\Debug;
use Fbn\Debug\Debug;

/**
* Initialize singleton instance.
Expand Down
4 changes: 2 additions & 2 deletions tests/DbgTest.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php

/*
* This file is part of the php-debug-functions package.
* This file is part of the fabacino/debug-functions package.
*
* (c) Fabian Wiget <fabacino@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Fabacino\Debug\Test;
namespace Fbn\Debug\Test;

/**
* Tests for function `dbg`.
Expand Down
6 changes: 3 additions & 3 deletions tests/DbgThrowTest.php
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<?php

/*
* This file is part of the php-debug-functions package.
* This file is part of the fabacino/debug-functions package.
*
* (c) Fabian Wiget <fabacino@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Fabacino\Debug\Test;
namespace Fbn\Debug\Test;

use Fabacino\Debug\Debug;
use Fbn\Debug\Debug;

/**
* Tests for function `dbgthrow`.
Expand Down
8 changes: 4 additions & 4 deletions tests/DbglogTest.php
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<?php

/*
* This file is part of the php-debug-functions package.
* This file is part of the fabacino/debug-functions package.
*
* (c) Fabian Wiget <fabacino@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Fabacino\Debug\Test;
namespace Fbn\Debug\Test;

use Fabacino\Debug\Debug;
use Fabacino\Debug\Logger;
use Fbn\Debug\Debug;
use Fbn\Debug\Logger;

/**
* Tests for function `dbglog`.
Expand Down
6 changes: 3 additions & 3 deletions tests/DbgrTest.php
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<?php

/*
* This file is part of the php-debug-functions package.
* This file is part of the fabacino/debug-functions package.
*
* (c) Fabian Wiget <fabacino@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Fabacino\Debug\Test;
namespace Fbn\Debug\Test;

use Fabacino\Debug\Debug;
use Fbn\Debug\Debug;

/**
* Tests for function `dbgr`.
Expand Down
6 changes: 3 additions & 3 deletions tests/LoggerTest.php
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<?php

/*
* This file is part of the php-debug-functions package.
* This file is part of the fabacino/debug-functions package.
*
* (c) Fabian Wiget <fabacino@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Fabacino\Debug\Test;
namespace Fbn\Debug\Test;

use Fabacino\Debug\Logger;
use Fbn\Debug\Logger;
use Psr\Log\LogLevel;

/**
Expand Down
6 changes: 3 additions & 3 deletions tests/TestDebug.php
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
<?php

/*
* This file is part of the php-debug-functions package.
* This file is part of the fabacino/debug-functions package.
*
* (c) Fabian Wiget <fabacino@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Fabacino\Debug\Test;
namespace Fbn\Debug\Test;

/**
* Debug class for testing.
*/
class TestDebug extends \Fabacino\Debug\Debug
class TestDebug extends \Fbn\Debug\Debug
{
/**
* Check whether we are in a CLI environment.
Expand Down
6 changes: 3 additions & 3 deletions tests/TestHelper.php
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<?php

/*
* This file is part of the php-debug-functions package.
* This file is part of the fabacino/debug-functions package.
*
* (c) Fabian Wiget <fabacino@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Fabacino\Debug\Test;
namespace Fbn\Debug\Test;

use Fabacino\Debug\Logger;
use Fbn\Debug\Logger;

/**
* Some helpger functions for tests.
Expand Down