Skip to content

Commit

Permalink
chore: l9
Browse files Browse the repository at this point in the history
  • Loading branch information
ryangjchandler committed Feb 19, 2022
1 parent 0f7286f commit ede3bc3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
],
"require": {
"php": "^8.0",
"spatie/laravel-package-tools": "^1.9.2",
"filament/filament": "^2.0",
"illuminate/contracts": "^8.73"
"spatie/laravel-package-tools": "^1.9.2",
"illuminate/contracts": "^9.0"
},
"require-dev": {
"nunomaduro/collision": "^5.10",
"nunomaduro/larastan": "^1.0",
"orchestra/testbench": "^6.22",
"nunomaduro/collision": "^6.0",
"nunomaduro/larastan": "^2.0.1",
"orchestra/testbench": "^7.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.1",
"phpstan/extension-installer": "^1.1",
Expand Down
4 changes: 4 additions & 0 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
use Illuminate\Database\Eloquent\Factories\Factory;
use Orchestra\Testbench\TestCase as Orchestra;
use VendorName\Skeleton\SkeletonServiceProvider;
use Filament\FilamentServiceProvider;
use Livewire\LivewireServiceProvider;

class TestCase extends Orchestra
{
Expand All @@ -20,6 +22,8 @@ protected function setUp(): void
protected function getPackageProviders($app)
{
return [
LivewireServiceProvider::class,
FilamentServiceProvider::class,
SkeletonServiceProvider::class,
];
}
Expand Down

0 comments on commit ede3bc3

Please sign in to comment.