Skip to content

Commit 1f60c27

Browse files
committed
Use App and Tests namespace by default
1 parent 2d91525 commit 1f60c27

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
},
2727
"autoload": {
2828
"psr-4": {
29-
"IngeniozIT\\Skeleton\\": "src/"
29+
"App\\": "src/"
3030
}
3131
},
3232
"autoload-dev": {
3333
"psr-4": {
34-
"IngeniozIT\\Skeleton\\Tests\\": "tests/"
34+
"Tests\\": "tests/"
3535
}
3636
},
3737
"scripts": {

src/HelloWorld.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace IngeniozIT\Skeleton;
3+
namespace App;
44

55
final class HelloWorld
66
{

tests/FirstTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
declare(strict_types=1);
44

5-
namespace IngeniozIT\Skeleton\Tests;
5+
namespace Tests;
66

77
use PHPUnit\Framework\TestCase;
8-
use IngeniozIT\Skeleton\HelloWorld;
8+
use App\HelloWorld;
99

1010
final class FirstTest extends TestCase
1111
{

0 commit comments

Comments
 (0)