Fix namespace
This commit is contained in:
parent
7af4aeacd6
commit
94db3f0560
3 changed files with 7 additions and 7 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "anagram-finder/core",
|
||||
"description": "AnagramFinder core",
|
||||
"name": "countdown/letters-core",
|
||||
"description": "Countdown letters core",
|
||||
"type": "library",
|
||||
"require": {
|
||||
"illuminate/collections": "^13.26"
|
||||
|
|
@ -8,8 +8,8 @@
|
|||
"license": "AGPL-3.0-only",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Lvl0\\AnagramFinder\\Core\\": "src/",
|
||||
"Lvl0\\AnagramFinder\\Core\\Tests\\": "tests/"
|
||||
"Lvl0\\Countdown\\Letters\\": "src/",
|
||||
"Lvl0\\Countdown\\Letters\\Tests\\": "tests/"
|
||||
}
|
||||
},
|
||||
"authors": [
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
namespace Lvl0\AnagramFinder\Core;
|
||||
namespace Lvl0\Countdown\Letters;
|
||||
|
||||
use Illuminate\Support\Collection;
|
||||
use Illuminate\Support\LazyCollection;
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace Lvl0\AnagramFinder\Core\Tests\Unit;
|
||||
namespace Lvl0\Countdown\Letters\Tests\Unit;
|
||||
|
||||
use Lvl0\AnagramFinder\Core\Matcher;
|
||||
use Lvl0\Countdown\Letters\Matcher;
|
||||
use PHPUnit\Framework\Attributes\DataProvider;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue