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", "name": "countdown/letters-core",
"description": "AnagramFinder core", "description": "Countdown letters core",
"type": "library", "type": "library",
"require": { "require": {
"illuminate/collections": "^13.26" "illuminate/collections": "^13.26"
@ -8,8 +8,8 @@
"license": "AGPL-3.0-only", "license": "AGPL-3.0-only",
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"Lvl0\\AnagramFinder\\Core\\": "src/", "Lvl0\\Countdown\\Letters\\": "src/",
"Lvl0\\AnagramFinder\\Core\\Tests\\": "tests/" "Lvl0\\Countdown\\Letters\\Tests\\": "tests/"
} }
}, },
"authors": [ "authors": [

View file

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

View file

@ -1,8 +1,8 @@
<?php <?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\Attributes\DataProvider;
use PHPUnit\Framework\TestCase; use PHPUnit\Framework\TestCase;