File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed
Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1717 ],
1818 "require" : {
1919 "php" : " ^8.0" ,
20- "spatie/laravel-package-tools" : " ^1.9.2" ,
2120 "filament/filament" : " ^2.0" ,
22- "illuminate/contracts" : " ^8.73"
21+ "spatie/laravel-package-tools" : " ^1.9.2" ,
22+ "illuminate/contracts" : " ^9.0"
2323 },
2424 "require-dev" : {
25- "nunomaduro/collision" : " ^5.10 " ,
26- "nunomaduro/larastan" : " ^1.0 " ,
27- "orchestra/testbench" : " ^6.22 " ,
25+ "nunomaduro/collision" : " ^6.0 " ,
26+ "nunomaduro/larastan" : " ^2.0.1 " ,
27+ "orchestra/testbench" : " ^7.0 " ,
2828 "pestphp/pest" : " ^1.21" ,
2929 "pestphp/pest-plugin-laravel" : " ^1.1" ,
3030 "phpstan/extension-installer" : " ^1.1" ,
Original file line number Diff line number Diff line change 55use Illuminate \Database \Eloquent \Factories \Factory ;
66use Orchestra \Testbench \TestCase as Orchestra ;
77use VendorName \Skeleton \SkeletonServiceProvider ;
8+ use Filament \FilamentServiceProvider ;
9+ use Livewire \LivewireServiceProvider ;
810
911class TestCase extends Orchestra
1012{
@@ -20,6 +22,8 @@ protected function setUp(): void
2022 protected function getPackageProviders ($ app )
2123 {
2224 return [
25+ LivewireServiceProvider::class,
26+ FilamentServiceProvider::class,
2327 SkeletonServiceProvider::class,
2428 ];
2529 }
You can’t perform that action at this time.
0 commit comments