Skip to content

Commit 2d92d9a

Browse files
committed
Use correct case for LangGraph
1 parent ff8e49d commit 2d92d9a

11 files changed

Lines changed: 26 additions & 26 deletions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ php artisan vendor:publish --tag="langgraph-platform-php-views"
4444
## Usage
4545

4646
```php
47-
$langgraphPlatform = new Jason Tame\LanggraphPlatform();
47+
$langgraphPlatform = new Jason Tame\LangGraphPlatform();
4848
echo $langgraphPlatform->echoPhrase('Hello, Jason Tame!');
4949
```
5050

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-
"LanggraphPlatform\\": "src/",
38-
"LanggraphPlatform\\Database\\Factories\\": "database/factories/"
37+
"LangGraphPlatform\\": "src/",
38+
"LangGraphPlatform\\Database\\Factories\\": "database/factories/"
3939
}
4040
},
4141
"autoload-dev": {
4242
"psr-4": {
43-
"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-
"LanggraphPlatform\\LanggraphPlatformServiceProvider"
65+
"LangGraphPlatform\\LangGraphPlatformServiceProvider"
6666
],
6767
"aliases": {
68-
"LanggraphPlatform": "LanggraphPlatform\\Facades\\LanggraphPlatform"
68+
"LangGraphPlatform": "LangGraphPlatform\\Facades\\LangGraphPlatform"
6969
}
7070
}
7171
},

config/langgraph-platform-php.php

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

3-
// config for LanggraphPlatform
3+
// config for LangGraphPlatform
44
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 LanggraphPlatform\Database\Factories;
3+
namespace LangGraphPlatform\Database\Factories;
44

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

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
backupStaticProperties="false"
1717
>
1818
<testsuites>
19-
<testsuite name="Langgraph Platform Test Suite">
19+
<testsuite name="LangGraph Platform Test Suite">
2020
<directory>tests</directory>
2121
</testsuite>
2222
</testsuites>

src/Commands/LanggraphPlatformCommand.php

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

3-
namespace LanggraphPlatform\Commands;
3+
namespace LangGraphPlatform\Commands;
44

55
use Illuminate\Console\Command;
66

7-
class LanggraphPlatformCommand extends Command
7+
class LangGraphPlatformCommand extends Command
88
{
99
public $signature = 'langgraph-platform-php';
1010

src/Facades/LanggraphPlatform.php

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

3-
namespace LanggraphPlatform\Facades;
3+
namespace LangGraphPlatform\Facades;
44

55
use Illuminate\Support\Facades\Facade;
66

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

src/LanggraphPlatform.php

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

3-
namespace LanggraphPlatform;
3+
namespace LangGraphPlatform;
44

5-
class LanggraphPlatform {}
5+
class LangGraphPlatform {}

src/LanggraphPlatformServiceProvider.php

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

3-
namespace LanggraphPlatform;
3+
namespace LangGraphPlatform;
44

5-
use LanggraphPlatform\Commands\LanggraphPlatformCommand;
5+
use LangGraphPlatform\Commands\LangGraphPlatformCommand;
66
use Spatie\LaravelPackageTools\Package;
77
use Spatie\LaravelPackageTools\PackageServiceProvider;
88

9-
class LanggraphPlatformServiceProvider extends PackageServiceProvider
9+
class LangGraphPlatformServiceProvider extends PackageServiceProvider
1010
{
1111
public function configurePackage(Package $package): void
1212
{
@@ -20,6 +20,6 @@ public function configurePackage(Package $package): void
2020
->hasConfigFile()
2121
->hasViews()
2222
->hasMigration('create_langgraph_platform_php_table')
23-
->hasCommand(LanggraphPlatformCommand::class);
23+
->hasCommand(LangGraphPlatformCommand::class);
2424
}
2525
}

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 LanggraphPlatform\Tests\TestCase;
3+
use LangGraphPlatform\Tests\TestCase;
44

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

0 commit comments

Comments
 (0)