Fix namespace

This commit is contained in:
myrmidex 2026-08-30 21:52:19 +02:00
parent 7af4aeacd6
commit 94db3f0560
3 changed files with 7 additions and 7 deletions

View file

@ -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": [

View file

@ -1,6 +1,6 @@
<?php
namespace Lvl0\AnagramFinder\Core;
namespace Lvl0\Countdown\Letters;
use Illuminate\Support\Collection;
use Illuminate\Support\LazyCollection;

View file

@ -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;