File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ();
4848echo $langgraphPlatform->echoPhrase('Hello, Jason Tame!');
4949```
5050
Original file line number Diff line number Diff line change 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 },
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 },
Original file line number Diff line number Diff line change 11<?php
22
3- // config for LanggraphPlatform
3+ // config for LangGraphPlatform
44return [];
Original file line number Diff line number Diff line change 11<?php
22
3- namespace LanggraphPlatform \Database \Factories ;
3+ namespace LangGraphPlatform \Database \Factories ;
44
55use Illuminate \Database \Eloquent \Factories \Factory ;
66
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 11<?php
22
3- namespace LanggraphPlatform \Commands ;
3+ namespace LangGraphPlatform \Commands ;
44
55use Illuminate \Console \Command ;
66
7- class LanggraphPlatformCommand extends Command
7+ class LangGraphPlatformCommand extends Command
88{
99 public $ signature = 'langgraph-platform-php ' ;
1010
Original file line number Diff line number Diff line change 11<?php
22
3- namespace LanggraphPlatform \Facades ;
3+ namespace LangGraphPlatform \Facades ;
44
55use 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}
Original file line number Diff line number Diff line change 11<?php
22
3- namespace LanggraphPlatform ;
3+ namespace LangGraphPlatform ;
44
5- class LanggraphPlatform {}
5+ class LangGraphPlatform {}
Original file line number Diff line number Diff line change 11<?php
22
3- namespace LanggraphPlatform ;
3+ namespace LangGraphPlatform ;
44
5- use LanggraphPlatform \Commands \LanggraphPlatformCommand ;
5+ use LangGraphPlatform \Commands \LangGraphPlatformCommand ;
66use Spatie \LaravelPackageTools \Package ;
77use 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}
Original file line number Diff line number Diff line change 11<?php
22
3- use LanggraphPlatform \Tests \TestCase ;
3+ use LangGraphPlatform \Tests \TestCase ;
44
55uses (TestCase::class)->in (__DIR__ );
You can’t perform that action at this time.
0 commit comments