Skip to content

Commit ff8e49d

Browse files
committed
Fix namespaces
1 parent 18a4b97 commit ff8e49d

11 files changed

Lines changed: 22 additions & 25 deletions

.github/FUNDING.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@
3434
},
3535
"autoload": {
3636
"psr-4": {
37-
"Jason Tame\\LanggraphPlatform\\": "src/",
38-
"Jason Tame\\LanggraphPlatform\\Database\\Factories\\": "database/factories/"
37+
"LanggraphPlatform\\": "src/",
38+
"LanggraphPlatform\\Database\\Factories\\": "database/factories/"
3939
}
4040
},
4141
"autoload-dev": {
4242
"psr-4": {
43-
"Jason Tame\\LanggraphPlatform\\Tests\\": "tests/",
43+
"LanggraphPlatform\\Tests\\": "tests/",
4444
"Workbench\\App\\": "workbench/app/"
4545
}
4646
},
@@ -62,10 +62,10 @@
6262
"extra": {
6363
"laravel": {
6464
"providers": [
65-
"Jason Tame\\LanggraphPlatform\\LanggraphPlatformServiceProvider"
65+
"LanggraphPlatform\\LanggraphPlatformServiceProvider"
6666
],
6767
"aliases": {
68-
"LanggraphPlatform": "Jason Tame\\LanggraphPlatform\\Facades\\LanggraphPlatform"
68+
"LanggraphPlatform": "LanggraphPlatform\\Facades\\LanggraphPlatform"
6969
}
7070
}
7171
},

config/langgraph-platform-php.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
<?php
22

3-
// config for Jason Tame/LanggraphPlatform
4-
return [
5-
6-
];
3+
// config for LanggraphPlatform
4+
return [];

database/factories/ModelFactory.php

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

3-
namespace Jason Tame\LanggraphPlatform\Database\Factories;
3+
namespace LanggraphPlatform\Database\Factories;
44

55
use Illuminate\Database\Eloquent\Factories\Factory;
66

phpunit.xml.dist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616
backupStaticProperties="false"
1717
>
1818
<testsuites>
19-
<testsuite name="Jason Tame Test Suite">
19+
<testsuite name="Langgraph Platform Test Suite">
2020
<directory>tests</directory>
2121
</testsuite>
2222
</testsuites>
2323
<logging>
24-
<junit outputFile="build/report.junit.xml"/>
24+
<junit outputFile="build/report.junit.xml" />
2525
</logging>
2626
<source>
2727
<include>
2828
<directory suffix=".php">./src</directory>
2929
</include>
3030
</source>
31-
</phpunit>
31+
</phpunit>

src/Commands/LanggraphPlatformCommand.php

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

3-
namespace Jason Tame\LanggraphPlatform\Commands;
3+
namespace LanggraphPlatform\Commands;
44

55
use Illuminate\Console\Command;
66

src/Facades/LanggraphPlatform.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<?php
22

3-
namespace Jason Tame\LanggraphPlatform\Facades;
3+
namespace LanggraphPlatform\Facades;
44

55
use Illuminate\Support\Facades\Facade;
66

77
/**
8-
* @see \Jason Tame\LanggraphPlatform\LanggraphPlatform
8+
* @see \LanggraphPlatform\LanggraphPlatform
99
*/
1010
class LanggraphPlatform extends Facade
1111
{
1212
protected static function getFacadeAccessor(): string
1313
{
14-
return \Jason Tame\LanggraphPlatform\LanggraphPlatform::class;
14+
return \LanggraphPlatform\LanggraphPlatform::class;
1515
}
1616
}

src/LanggraphPlatform.php

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

3-
namespace Jason Tame\LanggraphPlatform;
3+
namespace LanggraphPlatform;
44

55
class LanggraphPlatform {}

src/LanggraphPlatformServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?php
22

3-
namespace Jason Tame\LanggraphPlatform;
3+
namespace LanggraphPlatform;
44

5+
use LanggraphPlatform\Commands\LanggraphPlatformCommand;
56
use Spatie\LaravelPackageTools\Package;
67
use Spatie\LaravelPackageTools\PackageServiceProvider;
7-
use Jason Tame\LanggraphPlatform\Commands\LanggraphPlatformCommand;
88

99
class LanggraphPlatformServiceProvider extends PackageServiceProvider
1010
{

tests/Pest.php

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

3-
use Jason Tame\LanggraphPlatform\Tests\TestCase;
3+
use LanggraphPlatform\Tests\TestCase;
44

55
uses(TestCase::class)->in(__DIR__);

0 commit comments

Comments
 (0)