Skip to content

Commit ede3bc3

Browse files
chore: l9
1 parent 0f7286f commit ede3bc3

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
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",

tests/TestCase.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
use Illuminate\Database\Eloquent\Factories\Factory;
66
use Orchestra\Testbench\TestCase as Orchestra;
77
use VendorName\Skeleton\SkeletonServiceProvider;
8+
use Filament\FilamentServiceProvider;
9+
use Livewire\LivewireServiceProvider;
810

911
class 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
}

0 commit comments

Comments
 (0)