mirror of
https://github.com/filamentphp/plugin-skeleton.git
synced 2025-12-06 13:38:53 +08:00
chore: l9
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -5,6 +5,8 @@ namespace VendorName\Skeleton\Tests;
|
||||
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
|
||||
{
|
||||
@@ -20,6 +22,8 @@ class TestCase extends Orchestra
|
||||
protected function getPackageProviders($app)
|
||||
{
|
||||
return [
|
||||
LivewireServiceProvider::class,
|
||||
FilamentServiceProvider::class,
|
||||
SkeletonServiceProvider::class,
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user